offset property

int get offset

Quantos registros pular no SQL (OFFSET).

Implementation

int get offset => (page < 1 ? 0 : (page - 1)) * perPage;