OptionsFormControl<TEntity> constructor

OptionsFormControl<TEntity>({
  1. List<ValidatorsFunction<FormControl<TEntity>>>? validators,
  2. bool activate()?,
  3. dynamic additionalData,
  4. UpdateValidValueHandler<TEntity>? onChangeValue,
  5. UpdateValidValueHandler<TEntity>? onChangeValidValue,
  6. bool callSetterOnInitialize = true,
  7. bool callSetterOnReinitialize = false,
})

Implementation

OptionsFormControl({
  this.validators,
  this.activate,
  this.additionalData,
  this.onChangeValue,
  this.onChangeValidValue,
  this.callSetterOnInitialize = true,
  this.callSetterOnReinitialize = false,
});