EzValidator<T> constructor

EzValidator<T>({
  1. bool optional = false,
  2. T? defaultValue,
  3. String? label,
})

Implementation

EzValidator({
  this.optional = false,
  this.defaultValue,
  this.label,
});