AppException constructor

AppException(
  1. String message, {
  2. int statusCode = 500,
  3. String type = 'about:blank',
  4. String title = 'Application Error',
  5. String? instance,
  6. dynamic details,
})

Implementation

AppException(
  this.message, {
  this.statusCode = 500,
  this.type = 'about:blank',
  this.title = 'Application Error',
  this.instance,
  this.details,
});