Snippet constructor

Snippet({
  1. DateTime? publishedAt,
  2. String? channelId,
  3. String? title,
  4. String? description,
  5. Thumbnails? thumbnails,
  6. String? channelTitle,
  7. Localized? localized,
})

Implementation

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