FirebaseAuthError.projectNotFound constructor

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

No Firebase project was found for the credential used to initialize the Admin SDKs.

Refer to Set up a Firebase project for documentation on how to generate a credential for your project and use it to authenticate the Admin SDKs.

Implementation

FirebaseAuthError.projectNotFound([String? message])
    : this(
          'project-not-found',
          message ??
              'No Firebase project was found for the provided credential.');