average property
Duration
get
average
Mean time per run (zero before the first run).
Implementation
Duration get average => _runs == 0
? Duration.zero
: Duration(microseconds: _totalMicros ~/ _runs);