Comment mesurer le temps d'exécution de la méthode en fléchette

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