decompress function

Uint8List decompress(
  1. Uint8List data
)

Implementation

Uint8List decompress(Uint8List data) {
  return Uint8List.fromList(ZLibDecoder().convert(data));
}