distinct method
Returns a new iterable with duplicates removed, preserving nulls.
Implementation
Iterable<T?> distinct() =>
this == null ? Iterable.empty() : validate().toSet();
Returns a new iterable with duplicates removed, preserving nulls.
Iterable<T?> distinct() =>
this == null ? Iterable.empty() : validate().toSet();