distinct<T> method

Iterable<T> distinct<T>()

Implementation

Iterable<T> distinct<T>() {
  return Set<T>.from(this).toList();
}