getPropertyValue method

String getPropertyValue(
  1. String propertyName
)

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) {
  // Get the latest pending value first.
  return _pendingProperties[propertyName] ?? _properties[propertyName] ?? EMPTY_STRING;
}