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