Returns whether the SDK is currently configured not to make network connections.
static Future<bool> isOffline() async { bool? result = await _channel.invokeMethod('isOffline'); return result ?? true; }