FacetsStats constructor

const FacetsStats({
  1. double? min,
  2. double? max,
  3. double? avg,
  4. double? sum,
})

Returns a new FacetsStats instance.

Implementation

const FacetsStats({
  this.min,
  this.max,
  this.avg,
  this.sum,
});