matchSingleVCardPrefixedField static method
Implementation
static List<String>? matchSingleVCardPrefixedField(
String prefix,
String rawText,
bool trim,
bool parseFieldDivider,
) {
final values =
matchVCardPrefixedField(prefix, rawText, trim, parseFieldDivider);
return values == null || values.isEmpty ? null : values[0];
}