notifyPropertyChanged method

void notifyPropertyChanged(
  1. PropertyChangedInfo info
)

Notify property changed information to the observers.

Implementation

void notifyPropertyChanged(PropertyChangedInfo info) {
  for (final observer in this._observers) {
    observer.call(info);
  }
}