StatisticalValue.fromJson constructor

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

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'],
    );