findInScopeOrNull<T> method
Finds a dependency in the current scope, returning null if not found
Implementation
T? findInScopeOrNull<T>({String? tag}) {
final scope = zenScope;
return scope?.find<T>(tag: tag);
}
Finds a dependency in the current scope, returning null if not found
T? findInScopeOrNull<T>({String? tag}) {
final scope = zenScope;
return scope?.find<T>(tag: tag);
}