compressToUint8Array static method

Future<Uint8List?> compressToUint8Array(
  1. String? uncompressed
)

Produces an uint8Array.

Can be decompressed with decompressFromUint8Array.

Implementation

static Future<Uint8List?> compressToUint8Array(String? uncompressed) async =>
    compressToUint8ArraySync(uncompressed);