upload

fun Container.upload(uploadUrl: String? = null, multiple: Boolean = false, label: String? = null, rich: Boolean = false, init: Upload.() -> Unit? = null): Upload

DSL builder extension function.

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

fun <S> Container.upload(state: ObservableState<S>, uploadUrl: String? = null, multiple: Boolean = false, label: String? = null, rich: Boolean = false, init: Upload.(S) -> Unit): Upload

DSL builder extension function for observable state.

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