FirebaseAuthError.missingHashAlgorithm constructor

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

Importing users with password hashes requires that the hashing algorithm and its parameters be provided.

Implementation

FirebaseAuthError.missingHashAlgorithm([String? message])
    : this(
          'missing-hash-algorithm',
          message ??
              'Importing users with password hashes requires that the hashing '
                  'algorithm and its parameters be provided.');