unique static method
Decompresses a Uint8List that was compressed using Shrink.unique and converts it back to a list of unique integers.
Returns the original list of unique integers.
Implementation
static List<int> unique(Uint8List compressed) {
return restoreUnique(compressed);
}