FirebaseAuthError.operationNotAllowed constructor

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

The provided sign-in provider is disabled for your Firebase project.

Enable it from the Sign-in Method section of the Firebase console.

Implementation

FirebaseAuthError.operationNotAllowed([String? message])
    : this(
          'operation-not-allowed',
          message ??
              'The given sign-in provider is disabled for this Firebase project. '
                  'Enable it in the Firebase console, under the sign-in method tab of the '
                  'Auth section.');