find<S> static method

S find<S>({
  1. String? tag,
})

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);
}