notifyChange method

void notifyChange()

Implementation

void notifyChange() {
  if (loading) {
    return;
  }
  if (_mounted && hasListeners) {
    notifyListeners();
  }
}