notifyListeners method

void notifyListeners()

Implementation

void notifyListeners() {
  for (var l in _listeners) {
    l();
  }
}