start method
Implementation
void start(String label) {
if (_timers.containsKey(label)) {
debugPrint('⚠️ [$label] is already running.');
return;
}
final stopwatch = Stopwatch()..start();
_timers[label] = stopwatch;
debugPrint('⏱️ [$label] started...');
}