hasNetworkPermissions static method

Future<bool> hasNetworkPermissions()

Implementation

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