ZLibDecoder constructor

ZLibDecoder({int windowBits: ZLibOption.defaultWindowBits, List<int> dictionary, bool raw: false })

Implementation

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