createHealthElements method

Implementation

Future<List<DecryptedHealthElementDto>?> createHealthElements(UserDto user, DecryptedPatientDto patient,
    List<DecryptedHealthElementDto> healthElements, CryptoConfig<DecryptedHealthElementDto, HealthElementDto> config) async {
  return createHealthElementsWithPatientInfo(user, patient.id, patient.delegations, healthElements, config);
}