FirebaseAuthError.emailAlreadyExists constructor

FirebaseAuthError.emailAlreadyExists([
  1. String? message
])

The provided email is already in use by an existing user. Each user must have a unique email.

Implementation

FirebaseAuthError.emailAlreadyExists([String? message])
    : this(
          'email-already-exists',
          message ??
              'The email address is already in use by another account.');