CursorPagination constructor

CursorPagination({
  1. String previousCursor = '',
  2. String nextCursor = '',
  3. String cursor = '',
})

Implementation

CursorPagination({
  this.previousCursor = '',
  this.nextCursor = '',
  this.cursor = '',
}) {
  reset();
}