AliasExistsException constructor

AliasExistsException(
  1. String message, {
  2. String? recoverySuggestion,
  3. String? underlyingException,
})

Exception thrown when attempts are made to confirm the account with an email or phone number that has already been supplied as an alias from a different account. This exception indicates an account with this email or phone already exists.

Implementation

AliasExistsException(String message,
    {String? recoverySuggestion, String? underlyingException})
    : super(message,
          recoverySuggestion: recoverySuggestion,
          underlyingException: underlyingException);