signIn abstract method

Future<AuthenticationResponse> signIn({
  1. required String loginId,
  2. required String password,
})

Authenticates an existing user using a password.

Matches the provided loginId and password. Returns an AuthenticationResponse upon successful authentication.

Implementation

Future<AuthenticationResponse> signIn({required String loginId, required String password});