ApiKeyException constructor

ApiKeyException(
  1. String message,
  2. String code, {
  3. int errorCode = HttpStatus.unauthorized,
})

Implementation

ApiKeyException(
  this.message,
  this.code, {
  this.errorCode = HttpStatus.unauthorized,
}) : super(
        code,
        errorCode: errorCode,
      );