setInstrumentationBreakpoint method

  1. @Deprecated('This command is deprecated')
Future<void> setInstrumentationBreakpoint(
  1. String eventName
)

Sets breakpoint on particular native event. eventName Instrumentation name to stop on.

Implementation

@Deprecated('This command is deprecated')
Future<void> setInstrumentationBreakpoint(String eventName) async {
  await _client.send('DOMDebugger.setInstrumentationBreakpoint', {
    'eventName': eventName,
  });
}