start method

void start()

You have to call this method to start the Timer. You cannot use the stream without calling this function.

Multiple calls for this function has no effect.

Implementation

void start() {
  if (started) {
    return;
  }
  restart();
}