start method

void start()

starts the timer

Implementation

void start() {
  if (hasTimer) {
    _timer?.start();
    _timeStatus.value = ToastTimeStatus.started;
  }
}