com.airbnb.epoxy.processor.ControllerModelField.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epoxy-processor Show documentation
Show all versions of epoxy-processor Show documentation
Epoxy is a system for composing complex screens with a ReyclerView in Android.
package com.airbnb.epoxy.processor
import com.squareup.javapoet.TypeName
data class ControllerModelField(
val fieldName: String,
var typeName: TypeName,
val packagePrivate: Boolean
)