ExceptionEntity constructor

ExceptionEntity({
  1. int? code,
  2. String? message,
})

Implementation

ExceptionEntity({
  this.code,
  this.message,
});