NumericStats constructor
const
NumericStats({})
Creates a stat bundle. Built by groupedStats; every field is derived
from at least one value, so count is always ≥ 1.
Audited: 2026-06-12 11:26 EDT
Implementation
const NumericStats({
required this.count,
required this.sum,
required this.min,
required this.max,
required this.mean,
});