FirebaseAuthError.invalidHashAlgorithm constructor

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

The hash algorithm must match one of the strings in the list of supported algorithms.

Implementation

FirebaseAuthError.invalidHashAlgorithm([String? message])
    : this(
          'invalid-hash-algorithm',
          message ??
              'The hash algorithm must match one of the strings in the list of '
                  'supported algorithms.');