decodeStream method

  1. @override
bool decodeStream(
  1. InputStream input,
  2. OutputStream output, {
  3. bool verify = false,
  4. bool raw = false,
})

Implementation

@override
bool decodeStream(InputStream input, OutputStream output,
        {bool verify = false, bool raw = false}) =>
    platformGZipDecoder.decodeStream(input, output, verify: verify, raw: raw);