notifyVisibleListeners method

  1. @protected
void notifyVisibleListeners()

Implementation

@protected
void notifyVisibleListeners() {
  for (final VoidCallback listener in _visibleListeners) {
    listener();
  }
}