average property

double get average

Arithmetic mean (0.0 when empty).

Implementation

double get average => isEmpty ? 0.0 : sum / length;