removeInstrumentationBreakpoint method
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,
});
}