EmailVerificationException constructor

EmailVerificationException(
  1. String message,
  2. String code, {
  3. int errorCode = 400,
})

Implementation

EmailVerificationException(
  this.message,
  this.code, {
  this.errorCode = 400,
}) : super(
        code,
        errorCode: errorCode,
      );