SelectedListItem constructor

SelectedListItem({
  1. required String name,
  2. String? value,
  3. bool? isSelected,
})

Implementation

SelectedListItem({
  required this.name,
  this.value,
  this.isSelected,
});