shiftRowsBy method

ReportRange shiftRowsBy(
  1. int rows
)

Implementation

ReportRange shiftRowsBy(int rows) {
  return copyWith(
    rowIndex: rowIndex + rows,
  );
}