ZLibDecoder constructor Null safety

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

Implementation

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