getPatients method
Future<List<DecryptedPatientDto> >
getPatients(
- UserDto user,
- ListOfIdsDto listOfIdsDto,
- CryptoConfig<
DecryptedPatientDto, PatientDto> config
Implementation
Future<List<DecryptedPatientDto>> getPatients(UserDto user, ListOfIdsDto listOfIdsDto, CryptoConfig<DecryptedPatientDto, PatientDto> config) async {
return Future.wait((await this.rawGetPatients(listOfIdsDto))!.map((it) => config.decryptPatient(user.dataOwnerId()!, it)));
}