Snippet constructor

Snippet({
  1. String? publishedAt,
  2. String? channelId,
  3. String? title,
  4. String? description,
  5. Thumbnails? thumbnails,
  6. String? channelTitle,
  7. List<String>? tags,
  8. String? categoryId,
  9. String? liveBroadcastContent,
  10. String? defaultLanguage,
  11. Localized? localized,
  12. String? defaultAudioLanguage,
})

Implementation

Snippet({
  this.publishedAt,
  this.channelId,
  this.title,
  this.description,
  this.thumbnails,
  this.channelTitle,
  this.tags,
  this.categoryId,
  this.liveBroadcastContent,
  this.defaultLanguage,
  this.localized,
  this.defaultAudioLanguage,
});