AppException constructor
AppException({
- String? title,
- String? message,
- ExceptionType type = ExceptionType.none,
- int statusCode = 404,
- String responseBody = "",
Implementation
AppException({
this.title,
this.message,
this.type = ExceptionType.none,
this.statusCode = 404,
this.responseBody = "",
});