notifyListeners method

void notifyListeners()

Calls all the listeners.

If listeners are added or removed during this function, the modifications will not change which listeners are called during this iteration.

Implementation

void notifyListeners() {
  _controller.notifyListeners();
}