hasNetworkPermissions static method
Implementation
static Future<bool> hasNetworkPermissions() async {
try {
final bool result = await _channel.invokeMethod('hasNetworkPermissions');
return result;
} on PlatformException {
return false;
}
}