findOrNullAsync<S> static method
Asynchronously retrieves the registered instance of type S, or returns null.
tag: The unique identifier used during registration.
Implementation
static Future<S?> findOrNullAsync<S>({String? tag}) {
return currentScope.findOrNullAsync<S>(tag: tag);
}