ErrorStatistics constructor

ErrorStatistics({
  1. int? otherCount,
  2. int? throttleCount,
  3. int? totalCount,
})

Implementation

ErrorStatistics({
  this.otherCount,
  this.throttleCount,
  this.totalCount,
});