MStringField<T> constructor

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

Implementation

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