blob: 74f2b9bc0fbe9c757d3e2f2ffc2bbcf31fdc4ce7 [file]
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:convert';
import 'gzip_stub.dart'
if (dart.library.io) 'gzip_io.dart'
if (dart.library.js_util) 'gzip_js.dart'
as impl;
/// A [Converter] that decompresses gzip-compressed data.
Converter<List<int>, List<int>> get gzipDecoder => impl.gzipDecoder;