Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class ListDialogModel(var positiveButton: TextModel? = null, var title: TextModel? = null, var positiveButtonListener: (item: List<ComposableListable>) -> Unit? = null, var negativeButton: TextModel? = null, var negativeButtonListener: () -> Unit? = null, var cancelable: Boolean = true, var onCheckedChange: (checked: Boolean, item: ComposableListable) -> Unit? = null, var onDismiss: () -> Unit? = null, var items: List<ComposableListable> = listOf(), var selected: List<ComposableListable> = listOf(), var multiple: Boolean = false)