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