Decompresses GZIP data
Uint8List decompressData(List<int> compressedData) { return Uint8List.fromList(GZipCodec().decode(compressedData)); }