prepValue property
String
get
prepValue
Extracts the prep value.
Implementation
String get prepValue {
final match = prepRegExp.firstMatch(this)?[3];
if (match != null) {
return match;
}
return '';
}