run<T> static method

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

Implementation

static Future<T?> run<T>(Future<T> Function() call) =>
    _run(call, trackAsLiveCall: true);