toggle method

void toggle()

Implementation

void toggle() {
  _isRunning.value ? stop() : start();
}