SelectableItem<T> constructor

SelectableItem<T>({
  1. required String title,
  2. bool isSelected = false,
  3. T? value,
})

Implementation

SelectableItem({required this.title, this.isSelected = false, this.value});