ChannelSnippet constructor

const ChannelSnippet({
  1. DateTime? publishedAt,
  2. String? title,
  3. String? description,
  4. Map<ThumbnailResolution, Thumbnail>? thumbnails,
  5. String? defaultLanguage,
  6. String? customUrl,
  7. String? country,
})

Implementation

const ChannelSnippet({
  super.publishedAt,
  super.title,
  super.description,
  super.thumbnails,
  super.defaultLanguage,
  this.customUrl,
  this.country,
});