AppException constructor

AppException({
  1. String? code = 'error',
  2. String? title,
  3. String? description,
})

Implementation

AppException({
  this.code = 'error',
  this.title,
  this.description,
});