connectionServiceProvider top-level property
final
Provides the current connection status of the device.
Implementation
final connectionServiceProvider =
StateNotifierProvider<_ConnectionProvider, bool>((ref) {
final connectionService = InternetAdressLookupConnectionService();
return _ConnectionProvider(connectionService);
});