MDoubleField<T> constructor

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

Implementation

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