stop method

Future<void> stop()

Stops the audio playback completely.

Implementation

Future<void> stop() async {
  await _audioPlayer.stop();
}