restoreUnique method

List<int> restoreUnique()

Decompresses this Uint8List as a list of unique integers.

This method should be used on data that was compressed with List<int>.shrinkUnique or Shrink.unique.

Returns the original list of unique integers.

Implementation

List<int> restoreUnique() => utils.restoreUnique(this);