ErrorStatistics.fromJson constructor
Implementation
factory ErrorStatistics.fromJson(Map<String, dynamic> json) {
return ErrorStatistics(
otherCount: json['OtherCount'] as int?,
throttleCount: json['ThrottleCount'] as int?,
totalCount: json['TotalCount'] as int?,
);
}