Snippet constructor

Snippet({
  1. String? publishedAt,
  2. String? channelId,
  3. String? title,
  4. String? description,
  5. Thumbnails? thumbnails,
  6. String? channelTitle,
  7. String? playlistId,
  8. int? position,
  9. ResourceId? resourceId,
  10. String? videoOwnerChannelTitle,
  11. String? videoOwnerChannelId,
})

Implementation

Snippet({
  this.publishedAt,
  this.channelId,
  this.title,
  this.description,
  this.thumbnails,
  this.channelTitle,
  this.playlistId,
  this.position,
  this.resourceId,
  this.videoOwnerChannelTitle,
  this.videoOwnerChannelId,
});