ZLibDecoder constructor

ZLibDecoder({
  1. bool gzip = false,
  2. int windowBits = ZLibOption.defaultWindowBits,
  3. List<int>? dictionary,
  4. bool raw = false,
})

Implementation

ZLibDecoder({
  this.gzip = false,
  this.windowBits = ZLibOption.defaultWindowBits,
  this.dictionary,
  this.raw = false,
}) {
  _validateZLibWindowBits(windowBits);
}