CollectionResult constructor

CollectionResult({
  1. int? page,
  2. int? perPage,
  3. List<Collection>? collections,
  4. int? totalResults,
  5. String? nextPage,
  6. String? prevPage,
})

Named ConstructorsCollectionResult with required params

Implementation

CollectionResult(
    {this.page,
    this.perPage,
    this.collections,
    this.totalResults,
    this.nextPage,
    this.prevPage});