stopPlaying method

Future stopPlaying()

Stops playing the voice.

Implementation

Future stopPlaying() async {
  _player.pause();
  playStatus = PlayStatus.stop;
}