min property

T get min

Returns the minimum value in the list.

Example:

final minValue = list.min;

Implementation

T get min => sorted().first;