stopPlay static method

dynamic stopPlay()

停止播放*

Implementation

static stopPlay() async {
  Log.i(tag, "stopPlay");
  _isPlaying=false;
  _playQueue.clear();
  await soundPlayer.stopPlayer();
  await FlutterTTSHandler.stopPlay();
  await onPlayInterrupted();
}