notifyListeners method

bool notifyListeners()

Call all the registered listeners.

Implementation

bool notifyListeners()  {
  final notify = _implChangeNotifier != null;
  if (notify) {
    _implChangeNotifier?.notifyListeners();
  }
  return notify;
}