findOrNullAsync<S> static method
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);
}