CommentThreadSnippet constructor

CommentThreadSnippet({
  1. bool? canReply,
  2. String? channelId,
  3. bool? isPublic,
  4. Comment? topLevelComment,
  5. int? totalReplyCount,
  6. String? videoId,
})

Implementation

CommentThreadSnippet({
  this.canReply,
  this.channelId,
  this.isPublic,
  this.topLevelComment,
  this.totalReplyCount,
  this.videoId,
});