FirebaseAuthError.uidAlreadyExists constructor

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

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

Implementation

FirebaseAuthError.uidAlreadyExists([String? message])
    : this('uid-already-exists',
          message ?? 'The user with the provided uid already exists.');