notify method

  1. @override
void notify()
override

Notifies listeners of state changes.

Implementation

@override
void notify() {
  super.notify();
  notifyObservers();
}