getPropertyValue method
Returns the property value given a property name. value is a String containing the value of the property. If not set, returns the empty string.
Implementation
String getPropertyValue(String propertyName) {
propertyName = normalizePropertyName(propertyName);
return _getEffectivePropertyValueEntry(propertyName)?.value ?? EMPTY_STRING;
}