CommentSnippet constructor

CommentSnippet({
  1. String? channelId,
  2. String? videoId,
  3. String? textDisplay,
  4. String? textOriginal,
  5. String? authorDisplayName,
  6. String? authorProfileImageUrl,
  7. String? authorChannelUrl,
  8. AuthorChannelId? authorChannelId,
  9. bool? canRate,
  10. String? viewerRating,
  11. int? likeCount,
  12. String? publishedAt,
  13. String? updatedAt,
})

Implementation

CommentSnippet({
  this.channelId,
  this.videoId,
  this.textDisplay,
  this.textOriginal,
  this.authorDisplayName,
  this.authorProfileImageUrl,
  this.authorChannelUrl,
  this.authorChannelId,
  this.canRate,
  this.viewerRating,
  this.likeCount,
  this.publishedAt,
  this.updatedAt,
});