MediaQueueItem constructor Null safety

MediaQueueItem(
  1. {int? itemId,
  2. double? playbackDuration,
  3. double? startTime,
  4. MediaInfo? media,
  5. bool? autoplay,
  6. double? preloadTime}
)

Implementation

MediaQueueItem({
  this.itemId,
  this.playbackDuration,
  this.startTime,
  this.media,
  this.autoplay,
  this.preloadTime,
});