ErrorStatistics.fromJson constructor

ErrorStatistics.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}