MultiSelectItem<T> constructor
MultiSelectItem<T> ({})
Creates a MultiSelectItem with the given id, value, title,
optional subtitle, and isChecked state.
Implementation
MultiSelectItem({
required this.id,
required this.value,
required this.title,
this.subtitle,
this.isChecked = false,
});