MaterialAutoSuggestInputComponent<T> constructor

MaterialAutoSuggestInputComponent<T>(
  1. @Optional() @Self() NgControl? cd,
  2. @Optional() IdGenerator? idGenerator,
  3. ChangeDetectorRef changeDetector,
  4. @Optional() @SkipSelf() PopupSizeProvider? popupSizeDelegate,
)

Implementation

factory MaterialAutoSuggestInputComponent(
        @Optional() @Self() NgControl? cd,
        @Optional() IdGenerator? idGenerator,
        ChangeDetectorRef changeDetector,
        @Optional() @SkipSelf() PopupSizeProvider? popupSizeDelegate) =>
    MaterialAutoSuggestInputComponent.protected(
        cd,
        idGenerator ?? SequentialIdGenerator.fromUUID(),
        changeDetector,
        popupSizeDelegate);