getChildrenSummaryTree method
Gets summary tree of children of a diagnosticable object.
Implementation
Future<Response> getChildrenSummaryTree(String isolateId, String objectGroup,
{String? diagnosticableId}) async {
return await vmService.callServiceExtension(
'ext.flutter.inspector.getChildrenSummaryTree',
isolateId: isolateId,
args: {
'arg': diagnosticableId,
'objectGroup': objectGroup,
},
);
}