notify method

void notify()

Implementation

void notify() {
  for (final StateObserver listener in listeners) {
    listener.onChanged();
  }
}