FoTextAreaInputComponent constructor

FoTextAreaInputComponent(
  1. @Self() @Optional() NgControl? control,
  2. Element _host,
  3. ChangeDetectorRef _changeDetectorRef
)

Implementation

FoTextAreaInputComponent(
  @Self() @Optional() this.control,
  this._host,
  this._changeDetectorRef,
) {
  if (control != null) control?.valueAccessor = this;
}