registerWithEmailAndPassword

abstract suspend fun registerWithEmailAndPassword(name: String, email: String, password: String, activity: Activity): Result<Unit>

Register a new user with an email and password.

Return

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

Parameters

name

The user's name.

email

The user's email address.

password

The user's password.