onPropertyChange method

void onPropertyChange(
  1. Observable observable
)
inherited

notifies property listeners of any changes to a property

Implementation

void onPropertyChange(Observable observable) {
  if(_notifications) {
    notifyListeners(observable.key, observable.get());
  }
}