UpValidation constructor

UpValidation({
  1. int? minLength,
  2. bool? isEmail = false,
  3. bool? isRequired = false,
  4. List<int>? fixedLengths,
  5. UpCustomValidation? customValidation,
})

Implementation

UpValidation({
  this.minLength,
  this.isEmail = false,
  this.isRequired = false,
  this.fixedLengths,
  this.customValidation,
});