ErrorInfo constructor

ErrorInfo({
  1. int? code,
  2. String? message,
  3. String? status,
  4. dynamic details,
})

Implementation

ErrorInfo({
  this.code,
  this.message,
  this.status,
  this.details,
});