gzipDecode function

List<int>? gzipDecode(
  1. List<int> bytes
)

Gzip-decodes bytes. Returns null on unsupported platforms.

Implementation

List<int>? gzipDecode(List<int> bytes) => null;