PlayerRestrictions constructor

PlayerRestrictions({
  1. required bool canSkipNext,
  2. required bool canSkipPrevious,
  3. required bool canRepeatTrack,
  4. required bool canRepeatContext,
  5. required bool canToggleShuffle,
  6. required bool canSeek,
})

Implementation

PlayerRestrictions({
  required this.canSkipNext,
  required this.canSkipPrevious,
  required this.canRepeatTrack,
  required this.canRepeatContext,
  required this.canToggleShuffle,
  required this.canSeek,
});