matchSingleVCardPrefixedField static method

List<String>? matchSingleVCardPrefixedField(
  1. String prefix,
  2. String rawText,
  3. bool trim,
  4. bool parseFieldDivider,
)

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];
}