Kwik Tags Input Item
data class KwikTagsInputItem(val id: Any, val label: String, val quantity: Int = 1, val minQuantity: Int = 1, val maxQuantity: Int = 100)
Holds the data for each tag item.
Parameters
id
: Unique identifier for the tag.
label
: The display name of the tag.
quantity
: The quantity of the tag. Default is 1.
min Quantity
: The minimum quantity allowed. Default is 1.
max Quantity
: The maximum quantity allowed. Default is 100.