MaterialAutoSuggestInputComponent<T> constructor

MaterialAutoSuggestInputComponent<T>(
  1. @Optional.new() @Self.new() NgControl cd,
  2. @Optional.new() IdGenerator idGenerator,
  3. ChangeDetectorRef changeDetector,
  4. @Optional.new() @SkipSelf.new() 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);