copy method

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

Implementation

InAppPagingOptions copy({
  bool? fetchFromLast,
  int? fetchingSize,
  int? initialSize,
}) {
  return InAppPagingOptions(
    initialFetchSize: initialSize ?? this.initialSize,
    fetchingSize: fetchingSize ?? this.fetchingSize,
    fetchFromLast: fetchFromLast ?? this.fetchFromLast,
  );
}