averageOrThrow property
double
get
averageOrThrow
Arithmetic mean. Throws StateError if empty.
Implementation
double get averageOrThrow {
if (isEmpty) throw StateError('Cannot compute average of empty iterable.');
return sum() / length;
}