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