start method
Implementation
void start(String id) {
Stopwatch? item = _items[id];
if (item == null) {
item = Stopwatch();
_items[id] = item;
}
item.start();
}
void start(String id) {
Stopwatch? item = _items[id];
if (item == null) {
item = Stopwatch();
_items[id] = item;
}
item.start();
}