toPaginatedListCoding method

PaginatedListCoding toPaginatedListCoding()

Implementation

PaginatedListCoding toPaginatedListCoding() => PaginatedListCoding(
    pageSize: this.pageSize,
    totalSize: this.totalSize,
    rows: this.rows.map((e) => e.toCoding()).toList(),
    nextKeyPair: PaginatedDocumentKeyAndIdPairObject(startKey: this.nextKeyPair?.startKey, startKeyDocId: this.nextKeyPair?.startKeyDocId)
);