max property

T get max

Implementation

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