stop method

void stop()

暂停

Implementation

void stop() {
  if (_isActive) {
    _mTimer?.cancel();
  }
}