matchSinglePrefixedField method
Implementation
String? matchSinglePrefixedField(
String prefix,
String rawText,
String endChar,
bool trim,
) {
final List<String>? matches =
matchPrefixedField(prefix, rawText, endChar, trim);
return matches == null ? null : matches[0];
}