Option

data class Option<out T>(    val realValue: T,     val formValue: String,     val display: FlowContent.() -> Unit)

Constructors

Link copied to clipboard
fun <out T> Option(    realValue: T,     formValue: String,     display: FlowContent.() -> Unit)

Properties

Link copied to clipboard
val display: FlowContent.() -> Unit
Link copied to clipboard
val formValue: String
Link copied to clipboard
val realValue: T