CarpenterCollectionReady<T> constructor

const CarpenterCollectionReady<T>({
  1. required List<T> items,
  2. bool refreshing = false,
  3. bool hasNextPage = false,
  4. int page = 1,
  5. int totalPages = 1,
  6. int? totalItems,
})

Implementation

const CarpenterCollectionReady({
  required this.items,
  this.refreshing = false,
  this.hasNextPage = false,
  this.page = 1,
  this.totalPages = 1,
  this.totalItems,
});