paginationInfo property

PagedDataTablePaginationInfo get paginationInfo

Returns the actual pagination info

Implementation

PagedDataTablePaginationInfo get paginationInfo =>
    PagedDataTablePaginationInfo._(
        currentPage: _state.currentPage,
        currentPageSize: _state._items.length,
        hasNextPage: _state.hasNextPage,
        rowsPerPage: _state._pageSize,
        hasPreviousPage: _state.hasPreviousPage);