usbDebuggingCheck property

Future<bool> usbDebuggingCheck

Implementation

static Future<bool> get usbDebuggingCheck async {
  if (Platform.isIOS) return false;
  final bool usbDebuggingCheck =
      await _channel.invokeMethod('usbDebuggingCheck');
  return usbDebuggingCheck;
}