getLayoutExplorerNode method
Gets the layout explorer node.
Implementation
Future<Response> getLayoutExplorerNode(String isolateId, String objectGroup,
{String? id, int? subtreeDepth}) async {
return await vmService.callServiceExtension(
'ext.flutter.inspector.getLayoutExplorerNode',
isolateId: isolateId,
args: {
'id': id,
'groupName':
objectGroup, // Note: This uses 'groupName' instead of 'objectGroup'
'subtreeDepth': subtreeDepth?.toString(),
},
);
}