getChildrenSummaryTree method

Future<Response> getChildrenSummaryTree(
  1. String isolateId,
  2. String objectGroup, {
  3. String? diagnosticableId,
})

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,
    },
  );
}