instance property
Access the singleton instance of the network reachability service.
Implementation
static NetworkReachability get instance {
if (_instance == null) {
throw Exception(
'NetworkReachability has not been initialized. Call NetworkReachability.init() first.');
}
return _instance!;
}