FormFieldValidators constructor

const FormFieldValidators({
  1. required String value,
  2. required FormFieldValidatorsType type,
  3. String? custom_message,
  4. Pattern? custom_pattern,
})

Implementation

const FormFieldValidators({
  required this.value,
  required this.type,
  this.custom_message,
  this.custom_pattern,
});