PageOfDashboards constructor

PageOfDashboards({
  1. List<Dashboard>? dashboards,
  2. int? maxResults,
  3. String? next,
  4. String? prev,
  5. int? startAt,
  6. int? total,
})

Implementation

PageOfDashboards(
    {List<Dashboard>? dashboards,
    this.maxResults,
    this.next,
    this.prev,
    this.startAt,
    this.total})
    : dashboards = dashboards ?? [];