SelectOption constructor

SelectOption({
  1. required String label,
  2. required String value,
  3. String? description,
  4. Emoji? emoji,
  5. bool? defaultSelected,
})

Constructor

Implementation

SelectOption({
  required this.label,
  required this.value,
  this.description,
  this.emoji,
  this.defaultSelected,
});