notifyListeners method

void notifyListeners()

Notifies the scroll listener of all linked controllers.

Implementation

void notifyListeners() {
  for (final controller in _attachedControllers) {
    controller.position.notifyListeners();
  }
}