disposeAllGroups method
Disposes all object groups.
Implementation
Future<Response> disposeAllGroups(
String isolateId, String objectGroup) async {
return await vmService.callServiceExtension(
'ext.flutter.inspector.disposeAllGroups',
isolateId: isolateId,
args: {'objectGroup': objectGroup},
);
}