innerAutoTriggerObserveScrollNotifications property

List<Type> innerAutoTriggerObserveScrollNotifications
inherited

Implementation

List<Type> get innerAutoTriggerObserveScrollNotifications =>
    innerAutoTriggerObserveTypes.map((type) {
      switch (type) {
        case ObserverAutoTriggerObserveType.scrollStart:
          return ScrollStartNotification;
        case ObserverAutoTriggerObserveType.scrollUpdate:
          return ScrollUpdateNotification;
        case ObserverAutoTriggerObserveType.scrollEnd:
          return ScrollEndNotification;
      }
    }).toList();