PlayerStatistics constructor

PlayerStatistics({
  1. required int totalTracksPlayed,
  2. required int currentQueueSize,
  3. required int historySize,
  4. required bool isPlaying,
  5. required bool isPaused,
  6. required int currentVolume,
  7. required String repeatMode,
})

Implementation

PlayerStatistics({
  required this.totalTracksPlayed,
  required this.currentQueueSize,
  required this.historySize,
  required this.isPlaying,
  required this.isPaused,
  required this.currentVolume,
  required this.repeatMode,
});