onPropertyChange method
notifies property listeners of any changes to a property
Implementation
void onPropertyChange(Observable observable) => notificationsEnabled
? notifyListeners(observable.key, observable.get())
: null;
notifies property listeners of any changes to a property
void onPropertyChange(Observable observable) => notificationsEnabled
? notifyListeners(observable.key, observable.get())
: null;