Inflate constructor

Inflate(
  1. List<int> bytes, [
  2. int? uncompressedSize
])

Implementation

Inflate(List<int> bytes, [int? uncompressedSize])
    : input = InputStream(bytes),
      output = OutputStream(size: uncompressedSize) {
  inputSet = true;
  _inflate();
}