MediaPlayerEntity constructor

const MediaPlayerEntity({
  1. double? currentTime,
  2. double? duration,
  3. bool? ended,
  4. bool? fullscreen,
  5. bool? livestream,
  6. String? label,
  7. bool? loop,
  8. MediaType? mediaType,
  9. bool? muted,
  10. bool? paused,
  11. bool? pictureInPicture,
  12. String? playerType,
  13. double? playbackRate,
  14. String? quality,
  15. int? volume,
})

Implementation

const MediaPlayerEntity({
  this.currentTime,
  this.duration,
  this.ended,
  this.fullscreen,
  this.livestream,
  this.label,
  this.loop,
  this.mediaType,
  this.muted,
  this.paused,
  this.pictureInPicture,
  this.playerType,
  this.playbackRate,
  this.quality,
  this.volume,
});