LightStats<T extends num> constructor

LightStats<T extends num>(
  1. int count,
  2. num average,
  3. T min,
  4. T max,
)

Implementation

LightStats(
  this.count,
  this.average,
  this.min,
  this.max,
);