find<S> static method
Finds a registered instance of type S.
// Example usage:
final service = Levit.find<AuthService>();
Implementation
static S find<S>({String? tag}) {
return Ls.find<S>(tag: tag);
}
Finds a registered instance of type S.
// Example usage:
final service = Levit.find<AuthService>();
static S find<S>({String? tag}) {
return Ls.find<S>(tag: tag);
}