CuReTextFieldValidator constructor

CuReTextFieldValidator({
  1. String? errorText,
  2. bool? required,
  3. bool? noSpaces,
  4. int? min,
  5. int? max,
  6. RegExp? regex,
  7. bool? securePassword,
  8. DateTime? minDate,
  9. DateTime? maxDate,
  10. int? minAge,
  11. int? maxAge,
})

Implementation

CuReTextFieldValidator({
  this.errorText,
  this.required,
  this.noSpaces,
  this.min,
  this.max,
  this.regex,
  this.securePassword,
  this.minDate,
  this.maxDate,
  this.minAge,
  this.maxAge,
});