removeBreakpoint method Null safety
override
The removeBreakpoint
RPC is used to remove a breakpoint by its id
.
Note that breakpoints are added and removed on a per-isolate basis.
If isolateId
refers to an isolate which has exited, then the Collected
Sentinel is returned.
See Success
.
This method will throw a SentinelException in the case a Sentinel is returned.
Implementation
@override
Future<Success> removeBreakpoint(String isolateId, String breakpointId) =>
_call('removeBreakpoint',
{'isolateId': isolateId, 'breakpointId': breakpointId});