runRunner<T> method

Future<T?> runRunner<T>(
  1. Callback<Future<T?>> runner, {
  2. Object? key,
  3. bool throwException = false,
})

Implementation

Future<T?> runRunner<T>(
  Callback<Future<T?>> runner, {
  Object? key,
  bool throwException = false,
}) =>
    runBusyFuture<T>(runBusyRunner<T>(
      runner,
      key: key,
      throwException: throwException,
    ));