CodeMismatchException constructor

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

Exception thrown when a verification code provided to the requested service doesn't match what the service was expecting.

Implementation

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