debugDumpRenderTree method

Future<Response> debugDumpRenderTree(
  1. String isolateId
)

Dumps the render tree.

Implementation

Future<Response> debugDumpRenderTree(String isolateId) async {
  return await vmService.callServiceExtension(
    'ext.flutter.debugDumpRenderTree',
    isolateId: isolateId,
    args: {},
  );
}