start method

void start(
  1. String label
)

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...');
}