commaDelimitedListToSet static method

Set<String> commaDelimitedListToSet(
  1. String? str
)

Convert comma delimited list to set

Implementation

static Set<String> commaDelimitedListToSet(String? str) {
  return commaDelimitedListToStringList(str).toSet();
}