ForecastStatistics.fromJson constructor

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

Implementation

factory ForecastStatistics.fromJson(Map<String, dynamic> json) {
  return ForecastStatistics(
    faultCountHigh: json['FaultCountHigh'] as int?,
    faultCountLow: json['FaultCountLow'] as int?,
  );
}