StatisticalValue constructor

StatisticalValue({
  1. required double value,
  2. required double previousValue,
  3. required double growthRatePercentage,
})

Implementation

StatisticalValue({
  required this.value,
  required this.previousValue,
  required this.growthRatePercentage,
});