toPaginatedListDataSample method
DecryptedPaginatedListServiceDto
toPaginatedListDataSample()
Implementation
DecryptedPaginatedListServiceDto toPaginatedListDataSample() => DecryptedPaginatedListServiceDto(
pageSize: this.pageSize,
totalSize: this.totalSize,
rows: this.rows.map((e) => e.toServiceDto(null)).toList(),
nextKeyPair: PaginatedDocumentKeyIdPairObject(startKey: this.nextKeyPair?.startKey, startKeyDocId: this.nextKeyPair?.startKeyDocId)
);