createNotifier method
Creates a NetworkStateNotifier bound to this manager.
final provider = StateNotifierProvider<NetworkStateNotifier, NetworkState>(
(ref) => ref.watch(networkManagerProvider).createNotifier(),
);
Implementation
NetworkStateNotifier createNotifier() => NetworkStateNotifier(this);