disposeId method
Disposes a specific object by ID.
Implementation
Future<Response> disposeId(String isolateId, String objectGroup,
{String? objectId}) async {
return await vmService.callServiceExtension(
'ext.flutter.inspector.disposeId',
isolateId: isolateId,
args: {
'arg': objectId,
'objectGroup': objectGroup,
},
);
}