find method
Get the controller instance (throws if not found)
Implementation
@override
T find() {
if (scope != null) {
return scope!.findRequired<T>(tag: tag);
} else {
return Zen.find<T>(tag: tag);
}
}
Get the controller instance (throws if not found)
@override
T find() {
if (scope != null) {
return scope!.findRequired<T>(tag: tag);
} else {
return Zen.find<T>(tag: tag);
}
}