createNotifier method

NetworkStateNotifier createNotifier()

Creates a NetworkStateNotifier bound to this manager.

final provider = StateNotifierProvider<NetworkStateNotifier, NetworkState>(
  (ref) => ref.watch(networkManagerProvider).createNotifier(),
);

Implementation

NetworkStateNotifier createNotifier() => NetworkStateNotifier(this);