getMultipleValues static method

List<String>? getMultipleValues(
  1. String property
)

Implementation

static List<String>? getMultipleValues(String property) {
  if (property.isEmpty) return null;
  return property.split(_commaRegExp).map((e) => e.trim()).toList();
}