mean property

double? mean

Implementation

double? get mean {
  return this.fold(0, (dynamic a, b) => a + b) / this.length.toDouble();
}