CommentList constructor

CommentList({
  1. String? etag,
  2. List<Comment>? items,
  3. String? kind,
  4. String? nextPageToken,
  5. String? prevPageToken,
})

Implementation

CommentList({
  this.etag,
  this.items,
  this.kind,
  this.nextPageToken,
  this.prevPageToken,
});