USelectOption constructor

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

Implementation

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