start method

  1. @override
void start()
override

Start the clock calling any now before the clock is started will throw an exception!

Implementation

@override
void start() {
  _stopwatch
    ..reset()
    ..start();
  startTime = DateTime.now();
}