toPaginatedListMedicalDevice method
Implementation
PaginatedListMedicalDevice toPaginatedListMedicalDevice() => PaginatedListMedicalDevice(
pageSize: this.pageSize,
totalSize: this.totalSize,
rows: this.rows.map((e) => e.toMedicalDevice()).toList(),
nextKeyPair: PaginatedDocumentKeyAndIdPairObject(startKey: this.nextKeyPair?.startKey, startKeyDocId: this.nextKeyPair?.startKeyDocId)
);