notifyListeners method
Call all the registered listeners.
Implementation
bool notifyListeners() {
final notify = _implChangeNotifier != null;
if (notify) {
_implChangeNotifier?.notifyListeners();
}
return notify;
}
Call all the registered listeners.
bool notifyListeners() {
final notify = _implChangeNotifier != null;
if (notify) {
_implChangeNotifier?.notifyListeners();
}
return notify;
}