gzipDecode function

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

Gzip-decodes bytes using dart:io. Audited: 2026-06-12 11:26 EDT

Implementation

List<int>? gzipDecode(List<int> bytes) => io.gzip.decode(bytes);