Returns the unique values of list.
list
static List<T> unique<T>(Iterable<T> list) => list.toSet().toList();