ValidateOptions constructor

const ValidateOptions({
  1. String? value,
  2. int? minLength,
  3. int? maxLength,
  4. String? fieldName,
  5. bool required = true,
})

Implementation

const ValidateOptions({
  this.value,
  this.minLength,
  this.maxLength,
  this.fieldName,
  this.required = true,
});