GiphyPagination constructor

const GiphyPagination({
  1. required int? totalCount,
  2. required int count,
  3. required int offset,
  4. required int? nextCursor,
})

Creates a new pagination

Implementation

const GiphyPagination({
  required this.totalCount,
  required this.count,
  required this.offset,
  required this.nextCursor,
});