debugDumpLayerTree method

Future<Response> debugDumpLayerTree(
  1. String isolateId
)

Dumps the layer tree.

Implementation

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