gzipDecode function

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

Gzip-decodes bytes using dart:io.

Implementation

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