MinSelectOption<T> constructor

const MinSelectOption<T>({
  1. required T value,
  2. required String label,
  3. bool enabled = true,
  4. Widget? leading,
  5. Widget? trailing,
})

Implementation

const MinSelectOption({
  required this.value,
  required this.label,
  this.enabled = true,
  this.leading,
  this.trailing,
});