signInWithUsernameNPassword method

Future<Response<Credential>> signInWithUsernameNPassword(
  1. String username,
  2. String password
)

Signs in the user using username and password.

Implementation

Future<Response<Credential>> signInWithUsernameNPassword(
  String username,
  String password,
) {
  throw UnimplementedError(
    "Method signInWithUsernameNPassword() is not yet implemented.",
  );
}