findOrNull method
Find the instance (returns null if not found)
Implementation
@override
T? findOrNull() {
if (scope != null) {
return scope!.find<T>(tag: tag);
} else {
return Zen.findOrNull<T>(tag: tag);
}
}
Find the instance (returns null if not found)
@override
T? findOrNull() {
if (scope != null) {
return scope!.find<T>(tag: tag);
} else {
return Zen.findOrNull<T>(tag: tag);
}
}