SelectOption constructor

const SelectOption({
  1. required String value,
  2. required String label,
  3. bool disabled = false,
  4. Widget? leading,
  5. TextStyle? labelStyle,
})

Implementation

const SelectOption({
  required this.value,
  required this.label,
  this.disabled = false,
  this.leading,
  this.labelStyle,
});