start method

void start([
  1. int place = 1
])

Starts the Timer

Implementation

void start([
  final int place = 1,
]) {
  console.raw_console.echo_mode = false;
  _watch = Stopwatch();
  _updateTimer = Timer.periodic(
    const Duration(milliseconds: 10),
    (final timer) {
      update(place);
    },
  );
  _watch!.start();
}