onPropertyChange2 method
notifies listeners of any changes to a property
Implementation
void onPropertyChange2(Observable observable) {
if (notificationsEnabled) {
notifyListeners(observable.key, observable.get());
}
}
notifies listeners of any changes to a property
void onPropertyChange2(Observable observable) {
if (notificationsEnabled) {
notifyListeners(observable.key, observable.get());
}
}