Compresses data using GZIP
Uint8List compressData(List<int> data) { return Uint8List.fromList(GZipCodec().encode(data)); }