decompressData method

Uint8List decompressData(
  1. Uint8List data
)

Decompress the given data. On JS platforms, this does nothing, as it requires converters from 'dart:io'.

Implementation

Uint8List decompressData(Uint8List data) => decompress(this, data);