getActiveProviders method

List<BaseProvider<BaseNotifier, dynamic>> getActiveProviders()

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

Implementation

List<BaseProvider> getActiveProviders() {
  return [..._state.keys];
}