InAppPagingOptions constructor

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

Implementation

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