debugDumpFocusTree method

Future<Response> debugDumpFocusTree(
  1. String isolateId
)

Dumps the focus tree.

Implementation

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