VideoSnippet constructor

const VideoSnippet({
  1. DateTime? publishedAt,
  2. String? channelId,
  3. String? title,
  4. String? description,
  5. Map<ThumbnailResolution, Thumbnail>? thumbnails,
  6. String? channelTitle,
  7. List<String>? tags,
  8. Category? category,
  9. LiveBroadcastContent? liveBroadcastContent,
  10. String? defaultLanguage,
  11. String? defaultAudioLanguage,
})

Implementation

const VideoSnippet({
  super.publishedAt,
  super.channelId,
  super.title,
  super.description,
  super.thumbnails,
  super.channelTitle,
  this.tags,
  this.category,
  this.liveBroadcastContent,
  super.defaultLanguage,
  this.defaultAudioLanguage,
});