gzip

Last updated:

0 purchases

gzip Image
gzip Images
Add to Cart

Description:

gzip

A lightweight package for gzip, relying on dart:io and package:web for the
actual implementations.
Example:
import 'dart:typed_data';

import 'package:gzip/gzip.dart';

Future<void> main() async {
final zipper = GZip();
final input = Uint8List.fromList('Hello World'.codeUnits);
final compress = await zipper.compress(input);
print('Encoded: $compress');
final decompress = await zipper.decompress(Uint8List.fromList(compress));
print('Decoded: $decompress');
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.