find<S> static method
Find S type dependency from GetX container or SelfContainer .
Implementation
static S find<S>({String? tag}) {
if (existInGetX<S>(tag: tag)) {
return findInGetXContainer<S>(tag: tag);
} else {
return findInSelfContainer<S>(tag: tag);
}
}