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