withOffset method

PlanningCenterApiQuery withOffset(
  1. int offset
)

returns a new query only modifying the offset value

Implementation

PlanningCenterApiQuery withOffset(int offset) {
  return copy()..pageOffset = offset;
}