Snippet constructor

Snippet({
  1. String? publishedAt,
  2. String? channelId,
  3. String? title,
  4. String? description,
  5. Thumbnails? thumbnails,
  6. String? channelTitle,
  7. String? liveBroadcastContent,
  8. String? publishTime,
})

Implementation

Snippet({
  this.publishedAt,
  this.channelId,
  this.title,
  this.description,
  this.thumbnails,
  this.channelTitle,
  this.liveBroadcastContent,
  this.publishTime,
});