decode static method

Uint8List decode(
  1. Uint8List data
)

Decodes the provided LZF-encoded data.

Returns a Uint8List containing the uncompressed data.

Implementation

static Uint8List decode(Uint8List data) => _decoder.decode(data);