findOrNullAsync<S> static method

Future<S?> findOrNullAsync<S>({
  1. String? tag,
})

Asynchronously finds a registered instance of type S, or returns null.

Implementation

static Future<S?> findOrNullAsync<S>({String? tag}) {
  return currentScope.findOrNullAsync<S>(tag: tag);
}