NativeSelectItem constructor

const NativeSelectItem({
  1. required String value,
  2. required String label,
  3. bool disabled = false,
  4. Color? color,
})

The constructor for a NativeSelectItem

Implementation

const NativeSelectItem({
  required this.value,
  required this.label,
  this.disabled = false,
  this.color,
});