FaultStatistics.fromJson constructor

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

Implementation

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