Snippet constructor

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

Implementation

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