FirebaseAuthError.unauthorizedDomain constructor

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

The domain of the continue URL is not whitelisted. Whitelist the domain in the Firebase Console.

Implementation

FirebaseAuthError.unauthorizedDomain([String? message])
    : this(
          'unauthorized-continue-uri',
          message ??
              'The domain of the continue URL is not whitelisted. Whitelist the domain in the '
                  'Firebase console.');