minWith method
Returns the first element having the smallest value according to the
provided comparator or null if there are no elements.
Implementation
T minWith(Comparator<T> comparator) => _minMaxWith(-1, comparator);
Returns the first element having the smallest value according to the
provided comparator or null if there are no elements.
T minWith(Comparator<T> comparator) => _minMaxWith(-1, comparator);