start method

void start(
  1. String id
)

Implementation

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