PageOfChangelogs constructor

PageOfChangelogs({
  1. List<Changelog>? histories,
  2. int? maxResults,
  3. int? startAt,
  4. int? total,
})

Implementation

PageOfChangelogs(
    {List<Changelog>? histories, this.maxResults, this.startAt, this.total})
    : histories = histories ?? [];