min property

T get min

Implementation

T get min => (isNotEmpty) ? reduce((a, b) => math.min(a, b)) : 0.0 as T;