toPaginatedListUser method

PaginatedListUser toPaginatedListUser()

Implementation

PaginatedListUser toPaginatedListUser() => PaginatedListUser(
    pageSize: this.pageSize,
    totalSize: this.totalSize,
    rows: this.rows.map((e) => e.toUser()).toList(),
    nextKeyPair: PaginatedDocumentKeyAndIdPairObject(startKey: this.nextKeyPair?.startKey, startKeyDocId: this.nextKeyPair?.startKeyDocId)
);