stop method

Future<void> stop()

Tells the media player to stop the current song, then release the MediaPlayer _assetsAudioPlayer.stop();

Implementation

Future<void> stop() async {
  return _stop(removeNotification: true);
}