PaginatedResponseComment constructor

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

Implementation

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