setRange method

void setRange(
  1. int from,
  2. int to
)

Set the range of the list. If from and to are set on a page-by-page basis, pagination can be used.

Implementation

void setRange(int from, int to) {
  _from = from;
  _to = to;
}