maxValue property

double get maxValue

Implementation

double get maxValue =>
    values.isNotEmpty ? values.reduce((a, b) => a > b ? a : b) : 0.0;