average property

Duration get average

Implementation

Duration get average => times.isEmpty
    ? Duration.zero
    : Duration(microseconds: total.inMicroseconds ~/ times.length);