PlayerStream constructor

const PlayerStream(
  1. Stream<bool> playing,
  2. Stream<Duration> position,
  3. Stream<int?> width,
  4. Stream<int?> height,
  5. Stream<List<String>> subtitle,
  6. Stream<bool> buffering,
  7. Stream<Duration> buffer,
  8. Stream<Duration> duration,
  9. Stream<double> volume,
  10. Stream<double> rate,
  11. Stream<bool> completed,
)

PlayerStream

Event Streams for subscribing to Player events.

Implementation

const PlayerStream(
  this.playing,
  this.position,
  this.width,
  this.height,
  this.subtitle,
  this.buffering,
  this.buffer,
  this.duration,
  // this.playlist,
  this.volume,
  this.rate,
  this.completed,
);