NgControlName constructor

NgControlName(
  1. @SkipSelf() ControlContainer<AbstractControlGroup> _parent,
  2. @Optional() @Self() @Inject(NG_VALIDATORS) List? validators,
  3. @Optional() @Self() @Inject(ngValueAccessor) List<ControlValueAccessor>? valueAccessors
)

Implementation

NgControlName(
  @SkipSelf() this._parent,
  @Optional() @Self() @Inject(NG_VALIDATORS) List<dynamic>? validators,
  @Optional()
  @Self()
  @Inject(ngValueAccessor)
      List<ControlValueAccessor<dynamic>>? valueAccessors,
) : super(valueAccessors, validators);