unique method

List<T> unique()

Implementation

List<T> unique() {
  return toSet().toList();
}