EasyValidate constructor

const EasyValidate({
  1. int? minLength,
  2. int? maxLength,
  3. String? regex,
  4. num? min,
  5. num? max,
  6. EasyFormat? format,
  7. bool? past,
  8. bool? future,
  9. Function? custom,
})

Implementation

const EasyValidate({
  this.minLength,
  this.maxLength,
  this.regex,
  this.min,
  this.max,
  this.format,
  this.past,
  this.future,
  this.custom,
});