signIn abstract method

Future<AuthType> signIn(
  1. String username,
  2. String password
)

Signs in the given username with the given password and returns the AuthType of the sign-in process.

Implementation

Future<AuthType> signIn(
  // the username to sign in with
  String username,
  // the password to sign in with
  String password,
);