getAsync<T> abstract method

Future<T> getAsync<T>([
  1. String? name
])

Resolves and returns an async instance of T.

Use this method to resolve services registered with registerAsyncFactory or registerAsyncSingleton.

Implementation

Future<T> getAsync<T>([String? name]);