getAsync<T> method

  1. @override
Future<T> getAsync<T>({
  1. DiKey<T>? key,
})

Resolves T asynchronously from the current container hierarchy.

Synchronous registrations may also be requested through this method.

Implementation

@override
Future<T> getAsync<T>({final DiKey<T>? key}) =>
    container.getAsync<T>(key: key);