compressBytes function

Future<Uint8List> compressBytes(
  1. Uint8List input
)

Compresses a byte array into a GZip compressed byte array.

Implementation

Future<Uint8List> compressBytes(Uint8List input) async {
  throw UnsupportedError('Cannot compress on this platform');
}