FormGroupAnnotation<T> constructor

const FormGroupAnnotation<T>({
  1. List<Validator<T>> validators = const [],
  2. List<AsyncValidator<T>> asyncValidators = const [],
  3. int asyncValidatorsDebounceTime = 250,
  4. bool disabled = false,
})

Implementation

const FormGroupAnnotation({
  this.validators = const [],
  this.asyncValidators = const [],
  this.asyncValidatorsDebounceTime = 250,
  this.disabled = false,
});