minTotalTime property

Duration get minTotalTime

Implementation

Duration get minTotalTime =>
    results.map((r) => r.totalTime).reduce((a, b) => a < b ? a : b);