Statistics.fromJson constructor
Implementation
Statistics.fromJson(Map<String, dynamic> json)
: identifier = json['identifier'],
startTimestamp = json['startTimestamp'],
endTimestamp = json['endTimestamp'],
sources = Source.collect(json['sources']),
harmonized = StatisticsHarmonized.fromJson(json['harmonized']);