decompressData method

Uint8List decompressData(
  1. List<int> compressedData
)

Decompresses GZIP data

Implementation

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