removeDuplicates method

List<T> removeDuplicates()

Implementation

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