ServerException constructor

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

Implementation

ServerException(
  this.message,
  this.code, {
  this.errorCode = HttpStatus.badRequest,
}) : super(code, errorCode: errorCode);