signInWithEmailAndPassword

abstract suspend fun signInWithEmailAndPassword(email: String, password: String): Result<Unit>

Sign in with an email and password.

Return

A Result representing the sign-in operation result. It contains Unit if the sign-in was successful, or an error if there was a problem.

Parameters

email

The user's email address.

password

The user's password.