StatisticalValue constructor

StatisticalValue({
  1. String? extra,
  2. int? client_id,
  3. double? value,
  4. double? previous_value,
  5. double? growth_rate_percentage,
})

Implementation

StatisticalValue({
  super.extra,
  super.client_id,
  this.value,
  this.previous_value,
  this.growth_rate_percentage,
});