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