FirebaseAuthError.userNotFound constructor

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

There is no existing user record corresponding to the provided identifier.

Implementation

FirebaseAuthError.userNotFound([String? message])
    : this(
          'user-not-found',
          message ??
              'There is no user record corresponding to the provided identifier.');