inflate method

ByteData inflate()

Inflates a ZIP-compressed ByteData.

Implementation

ByteData inflate() =>
    archive.Inflate.buffer(archive.InputStream(buffer.asUint8List()))
        .getBytes()
        .toByteData();