runUntracked<T> static method

Future<T?> runUntracked<T>(
  1. Future<T> call()
)

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);