runUntracked<T> static method
Queues work through the same runAsync lane without counting it as live app work. Use this for best-effort artifact generation so API settling does not wait for screenshots.
Implementation
static Future<T?> runUntracked<T>(Future<T> Function() call) =>
_run(call, trackAsLiveCall: false);