Snippet constructor

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

Implementation

Snippet({
  this.title,
  this.description,
  this.customUrl,
  this.publishedAt,
  this.thumbnails,
  this.localized,
  this.country,
});