MIntField<T> constructor

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

Implementation

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