InAppPagingOptions constructor

const InAppPagingOptions({
  1. int? initialFetchSize,
  2. bool fetchFromLast = false,
  3. int? fetchingSize,
})

Implementation

const InAppPagingOptions({
  int? initialFetchSize,
  this.fetchFromLast = false,
  this.fetchingSize,
}) : initialSize = initialFetchSize ?? fetchingSize;