ErrorResponseModel constructor

const ErrorResponseModel({
  1. int? statusCode,
  2. String? message,
  3. String? detail,
  4. dynamic error,
})

Implementation

const ErrorResponseModel({
  this.statusCode,
  this.message,
  this.detail,
  this.error,
});