getPatients method

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)));
}