TypeaheadRemote(serviceManager: KVServiceManager<T>, function: suspend T.(String?, String?) -> List<String>, stateFunction: (() -> String)? = null, items: Int? = 8, minLength: Int = 1, delay: Int = 0, type: TextInputType = TextInputType.TEXT, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false)
serviceManager - multiplatform service manager
function - multiplatform service method returning the list of options
stateFunction - a function to generate the state object passed with the remote request
items - the max number of items to display in the dropdown
minLength - the minimum character length needed before triggering dropdown
delay - a delay between lookups
type - text input type (default "text")
name - the name attribute of the generated HTML input element
label - label text bound to the input element
rich - determines if label can contain HTML code
Constructor