SelectOption constructor

SelectOption({
  1. required String value,
  2. required String text,
  3. bool isDefault = false,
  4. bool isDisabled = false,
  5. String? group,
  6. String? icon,
})

Implementation

SelectOption({
  required this.value,
  required this.text,
  this.isDefault = false,
  this.isDisabled = false,
  this.group,
  this.icon,
});