copyWith method
Implementation
StatisticalValue copyWith({
double? value,
double? previousValue,
double? growthRatePercentage,
}) =>
StatisticalValue(
value: value ?? this.value,
previousValue: previousValue ?? this.previousValue,
growthRatePercentage: growthRatePercentage ?? this.growthRatePercentage,
);