decodeWithDecoder static method
Decodes the provided LZF-encoded data using a custom decoder.
Returns a Uint8List containing the uncompressed data.
Implementation
static Uint8List decodeWithDecoder(ChunkDecoder decoder, Uint8List data) =>
decoder.decode(data);