listTag

fun Container.listTag(type: ListType, elements: List<String>? = null, rich: Boolean = false, classes: Set<String>? = null, className: String? = null, init: ListTag.() -> Unit? = null): ListTag

DSL builder extension function.

It takes the same parameters as the constructor of the built component.

fun <S> Container.listTag(state: ObservableState<S>, type: ListType, elements: List<String>? = null, rich: Boolean = false, classes: Set<String>? = null, className: String? = null, init: ListTag.(S) -> Unit): ListTag

DSL builder extension function for observable state.

It takes the same parameters as the constructor of the built component.