maxBy method
Returns the first element yielding the largest value of the given
selector
or null
if there are no elements.
Implementation
E maxBy(Comparable Function(E element) selector) => _minMaxBy(1, selector);
Returns the first element yielding the largest value of the given
selector
or null
if there are no elements.
E maxBy(Comparable Function(E element) selector) => _minMaxBy(1, selector);