notify method

void notify()

Implementation

void notify() {
  for (final listener in _listeners) {
    listener.onDatabaseChanged();
  }
}