MultiSelectItem<T> constructor

MultiSelectItem<T>({
  1. required String id,
  2. required T value,
  3. required String title,
  4. String? subtitle,
  5. bool isChecked = false,
})

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,
});