SignInModule constructor

SignInModule(
  1. Dio _dio,
  2. StorageInterface _storage,
  3. BetterAuthClient client
)

Creates a new SignInModule instance.

Typically, you won't create this directly. Use BetterAuthClient.signIn instead.

Implementation

SignInModule(
  this._dio,
  this._storage,
  BetterAuthClient client,
) : _tokenManager = TokenManager(_storage);