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