toPaginatedListHealthcarePartyDto method
PaginatedListHealthcarePartyDto
toPaginatedListHealthcarePartyDto()
Implementation
PaginatedListHealthcarePartyDto toPaginatedListHealthcarePartyDto() => PaginatedListHealthcarePartyDto(
pageSize: this.pageSize,
totalSize: this.totalSize,
rows: this.rows.map((e) => e.toHealthcarePartyDto()).toList(),
nextKeyPair: PaginatedDocumentKeyIdPairObject(startKey: this.nextKeyPair?.startKey, startKeyDocId: this.nextKeyPair?.startKeyDocId)
);