getStatistics method

PlayerStatistics getStatistics()

Get statistics

Implementation

PlayerStatistics getStatistics() {
  return PlayerStatistics(
    totalTracksPlayed: _playedTrackIds.length,
    currentQueueSize: player.queueLength,
    historySize: player.history.length,
    isPlaying: player.isPlaying,
    isPaused: player.isPaused,
    currentVolume: player.volume,
    repeatMode: player.repeatMode.toString(),
  );
}