PlayerState constructor

PlayerState(
  1. Track? track,
  2. double playbackSpeed,
  3. int playbackPosition,
  4. PlayerOptions playbackOptions,
  5. PlayerRestrictions playbackRestrictions, {
  6. required bool isPaused,
})

Implementation

PlayerState(
  this.track,
  this.playbackSpeed,
  this.playbackPosition,
  this.playbackOptions,
  this.playbackRestrictions, {
  required this.isPaused,
});