PageOfComments constructor

PageOfComments({
  1. List<Comment>? comments,
  2. int? maxResults,
  3. int? startAt,
  4. int? total,
})

Implementation

PageOfComments(
    {List<Comment>? comments, this.maxResults, this.startAt, this.total})
    : comments = comments ?? [];