stopPlay method

void stopPlay()

取消播放音效序列

Implementation

void stopPlay() {
  if (timer != null) {
    timer!.cancel();
    timer = null;
    count = 0;
  }
}