CommentList constructor

CommentList({
  1. List<Comment>? comments,
  2. String? kind,
  3. String? nextPageToken,
})

Implementation

CommentList({
  this.comments,
  this.kind,
  this.nextPageToken,
});