notifyStates method

  1. @Deprecated('Use notifyStateListeners() instead.')
bool notifyStates()
inherited

Implementation

@Deprecated('Use notifyStateListeners() instead.')
bool notifyStates() {
  final notify = _implChangeNotifier != null;
  if (notify) {
    _implChangeNotifier?.notifyListeners();
  }
  return notify;
}