On this page
ZLibCodec constructor
Implementation
ZLibCodec(
{this.level = ZLibOption.defaultLevel,
this.windowBits = ZLibOption.defaultWindowBits,
this.memLevel = ZLibOption.defaultMemLevel,
this.strategy = ZLibOption.strategyDefault,
this.dictionary,
this.raw = false,
this.gzip = false}) {
_validateZLibeLevel(level);
_validateZLibMemLevel(memLevel);
_validateZLibStrategy(strategy);
_validateZLibWindowBits(windowBits);
}
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-io/ZLibCodec/ZLibCodec.html