ZLibDecoder constructor

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

Implementation

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