notifyClients method

bool notifyClients()

Notify any dependencies to be rebuilt.

Implementation

bool notifyClients() {
  final _state = state;
  final notified = _state != null;
  if (notified) {
    // ignore: invalid_use_of_protected_member
    _state.setState(() {});
  }
  return notified;
}