MEnumField<T> constructor

const MEnumField<T>({
  1. Key? key,
  2. required ValueChanged<Enum?> onChanged,
  3. required Enum? value,
  4. required List<Enum> values,
  5. bool readOnly = false,
  6. bool allowNull = false,
  7. Property? property,
})

Implementation

const MEnumField({
  super.key,
  required this.onChanged,
  required this.value,
  required this.values,
  this.readOnly = false,
  this.allowNull = false,
  this.property,
});