ColumnStats constructor

const ColumnStats({
  1. required String columnName,
  2. required int ndv,
  3. dynamic minValue,
  4. dynamic maxValue,
  5. double nullFraction = 0.0,
})

Implementation

const ColumnStats({
  required this.columnName,
  required this.ndv,
  this.minValue,
  this.maxValue,
  this.nullFraction = 0.0,
});