getParentChain method
Gets the parent chain of a widget.
Implementation
Future<Response> getParentChain(String isolateId, String objectGroup,
{String? objectId}) async {
return await vmService.callServiceExtension(
'ext.flutter.inspector.getParentChain',
isolateId: isolateId,
args: {
'arg': objectId,
'objectGroup': objectGroup,
},
);
}