FirebaseAuthError.invalidHashSaltSeparator constructor

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

The hashing algorithm salt separator field must be a valid byte buffer.

Implementation

FirebaseAuthError.invalidHashSaltSeparator([String? message])
    : this(
          'invalid-hash-salt-separator',
          message ??
              'The hashing algorithm salt separator field must be a valid byte buffer.');