FormProps constructor

const FormProps({
  1. required String formControlName,
  2. required String label,
  3. String? hint,
  4. bool mandatory = false,
  5. int? maxLength,
  6. ValidationFunction? validator,
})

Implementation

const FormProps({
  required this.formControlName,
  required this.label,
  this.hint,
  this.mandatory = false,
  this.maxLength,
  this.validator,

});