unique static method

Future<List<int>> unique(
  1. Uint8List compressed
)

Asynchronously decompresses a Uint8List that was compressed using Shrink.unique and converts it back to a list of unique integers in a separate isolate.

Returns a Future containing the original list of unique integers.

Implementation

static Future<List<int>> unique(Uint8List compressed) {
  return compute(_restoreUniqueIsolate, compressed);
}