FirebaseAuthError.internalError constructor

FirebaseAuthError.internalError([
  1. String? message,
  2. dynamic rawServerResponse
])

The Authentication server encountered an unexpected error while trying to process the request.

The error message should contain the response from the Authentication server containing additional information. If the error persists, please report the problem to our Bug Report support channel.

Implementation

FirebaseAuthError.internalError([String? message, rawServerResponse])
    : this('internal-error',
          '${message ?? 'An internal error has occurred.'}Raw server response: "${json.encode(rawServerResponse)}"');