ApiError constructor

ApiError({
  1. String? error,
  2. dynamic message,
  3. String? status,
})

Implementation

ApiError({
  this.error,
  this.message,
  this.status,
});