removeInstrumentationBreakpoint method

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

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

Implementation

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