ErrorResp constructor

ErrorResp({
  1. int? statusCode,
  2. bool? status,
  3. Error? error,
})

Implementation

ErrorResp({
  this.statusCode,
  this.status,
  this.error,
});