deleteHealthcareElement method
Implementation
@override
Future<String?> deleteHealthcareElement(String id) async {
return (await api.baseHealthElementApi.rawDeleteHealthElements(base_api.ListOfIdsDto(ids: [id])))?.single.rev ??
throwFormatException("An error occurred when deleting this HealthcareElement. Id: ${id}");
}