Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.