Convert comma delimited list to set
static Set<String> commaDelimitedListToSet(String? str) { return commaDelimitedListToStringList(str).toSet(); }