Wie man die Ausführungszeit der Methode in Dart mesure macht

Stopwatch stopwatch = new Stopwatch()..start();
doSomething();
print('doSomething() executed in ${stopwatch.elapsed}');
Relieved Rat