minBy method

E? minBy(
  1. Comparable selector(
    1. E element
    )
)

Returns the first element yielding the smallest value of the given selector or null if there are no elements.

Implementation

E? minBy(Comparable Function(E element) selector) => _minMaxBy(-1, selector);