AppException constructor

AppException({
  1. String? title,
  2. String? message,
  3. ExceptionType type = ExceptionType.none,
  4. int statusCode = 404,
  5. String responseBody = "",
})

Implementation

AppException({
  this.title,
  this.message,
  this.type = ExceptionType.none,
  this.statusCode = 404,
  this.responseBody = "",
});