@override Future<void> pauseOrPlay() async { if (player.value.isPlaying) { await player.pause(); } else { await player.play(); } }