pause method

Future<void> pause()

Pause current audio played

Implementation

Future<void> pause() async {
  await _player.pause();
}