getActiveNotifiers method

List<BaseNotifier> getActiveNotifiers()

Returns all active notifiers. Remember: A provider is stateless. The notifier holds the state.

Implementation

List<BaseNotifier> getActiveNotifiers() {
  return [..._state.values];
}