auth property

_AuthService<T, P> auth

Object that encapsulates the signIn, signUp, signOut methods

Implementation

_AuthService<T, P> get auth => _auth ??= _AuthService<T, P>(
      getRepoAs<IAuth<T, P>>(),
      this as InjectedAuthImp<T, P>,
    );