ErrorResponse constructor

ErrorResponse({
  1. num? errorCode,
  2. String? message,
  3. dynamic error,
})

Implementation

ErrorResponse({
  this.errorCode,
  this.message,
  this.error,
});