runFuture<T> method

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

Implementation

Future<T?> runFuture<T>(
  Future<T?> future, {
  Object? key,
  bool throwException = false,
}) =>
    runBusyFuture<T>(runBusyFuture<T>(
      future,
      key: key,
      throwException: throwException,
    ));