hasNet static method

Future<bool> hasNet()

Implementation

static Future<bool> hasNet() async {
  var result =
      await NativeImpl.methodChannel.invokeMethod('${methodTag}hasNet');
  return result;
}