GoogleCastQueueItem constructor

GoogleCastQueueItem({
  1. List<int>? activeTrackIds,
  2. bool autoPlay = true,
  3. Map<String, dynamic>? customData,
  4. int? itemId,
  5. required GoogleCastMediaInformation mediaInformation,
  6. Duration? playbackDuration,
  7. Duration? preLoadTime,
  8. Duration? startTime,
})

Creates a queue item instance.

Implementation

GoogleCastQueueItem({
  this.activeTrackIds,
  this.autoPlay = true,
  this.customData,
  this.itemId,
  required this.mediaInformation,
  this.playbackDuration,
  this.preLoadTime,
  this.startTime,
});