checkIfLastSong method

bool checkIfLastSong(
  1. PlayerState playerState
)

Implementation

bool checkIfLastSong(PlayerState playerState) {
  final currentIndex = playerState.playlist.index;
  final playlistLastIndex = playerState.playlist.medias.length - 1;
  final playListComplete = currentIndex == playlistLastIndex;
  return playListComplete;
}