MBoolField<T> constructor

const MBoolField<T>({
  1. Key? key,
  2. required ValueChanged<bool?> onChanged,
  3. required bool? value,
  4. bool readOnly = false,
  5. Property? property,
})

Implementation

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