isDebuggerConnected method

Future<bool> isDebuggerConnected ()

Implementation

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