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