decompress method

void decompress()

Implementation

void decompress() {
  final gzip = GZipCodec();
  final decompressedData = gzip.decode(_byteBuffer);
  _byteBuffer = Uint8List.fromList(decompressedData);
  _position = _byteBuffer.length;

  dirtyRead();
}