notify method
Implementation
Observer<T> notify([VoidCallback? callback]) {
if (callback != null) callback();
notifyListeners();
return this;
}
Observer<T> notify([VoidCallback? callback]) {
if (callback != null) callback();
notifyListeners();
return this;
}