toPaginatedListPatient method

PaginatedListPatient toPaginatedListPatient()

Implementation

PaginatedListPatient toPaginatedListPatient() => PaginatedListPatient(
    pageSize: this.pageSize,
    totalSize: this.totalSize,
    rows: this.rows.map((e) => e.toPatient()).toList(),
    nextKeyPair: PaginatedDocumentKeyAndIdPairObject(startKey: this.nextKeyPair?.startKey, startKeyDocId: this.nextKeyPair?.startKeyDocId)
);