notifyListeners method

dynamic notifyListeners()
inherited

Implementation

notifyListeners() {
  for (final fn in listenersVoid) {
    fn();
  }
}