rowsPerPage property

double get rowsPerPage

Average rows per page (for I/O cost estimation).

Implementation

double get rowsPerPage => pageCount > 0 ? rowCount / pageCount : rowCount.toDouble();