StatisticalValue.fromJson constructor
Parse from a json
Implementation
factory StatisticalValue.fromJson(Map<String, dynamic> json) => StatisticalValue(
value: json['value'],
previousValue: json['previous_value'],
growthRatePercentage: json['growth_rate_percentage'],
);