BackendConnectionErrors constructor

BackendConnectionErrors({
  1. int? connectionRefusedCount,
  2. int? hTTPCode4XXCount,
  3. int? hTTPCode5XXCount,
  4. int? otherCount,
  5. int? timeoutCount,
  6. int? unknownHostCount,
})

Implementation

BackendConnectionErrors({
  this.connectionRefusedCount,
  this.hTTPCode4XXCount,
  this.hTTPCode5XXCount,
  this.otherCount,
  this.timeoutCount,
  this.unknownHostCount,
});