debugDumpApp method

Future<Response> debugDumpApp(
  1. String isolateId
)

Dumps the application widget tree.

Implementation

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