IChunkDistiller constructor

const IChunkDistiller({
  1. int factor = 3,
  2. String header = "",
  3. bool lossy = true,
  4. int parallelism = 1,
  5. required IDistiller distiller,
})

Implementation

const IChunkDistiller({
  this.factor = 3,
  this.header = "",
  this.lossy = true,
  this.parallelism = 1,
  required this.distiller,
});