elapsedTime function

String elapsedTime(
  1. Stopwatch stopwatch
)

Calls elapsedTimeIn with the value of stopwatch.elapsed.

Implementation

String elapsedTime(Stopwatch stopwatch) => elapsedTimeIn(stopwatch.elapsed);