removeInstrumentationBreakpoint method

Future<void> removeInstrumentationBreakpoint(
  1. String eventName
)

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

Implementation

Future<void> removeInstrumentationBreakpoint(String eventName) async {
  await _client.send('EventBreakpoints.removeInstrumentationBreakpoint', {
    'eventName': eventName,
  });
}