isDebuggerConnected static method

Future<bool> isDebuggerConnected()

Implementation

static Future<bool> isDebuggerConnected() async {
  final bool b = await _channel.invokeMethod('isDebuggerConnected') ?? false;
  return b;
}