PlayerStatus constructor

const PlayerStatus({
  1. required double positionSeconds,
  2. required double durationSeconds,
  3. required bool isPlaying,
  4. required int currentIndex,
  5. required int playlistCount,
  6. required bool shuffleEnabled,
  7. required LoopMode loopMode,
})

Implementation

const PlayerStatus({
  required this.positionSeconds,
  required this.durationSeconds,
  required this.isPlaying,
  required this.currentIndex,
  required this.playlistCount,
  required this.shuffleEnabled,
  required this.loopMode,
});