getPropertyAsRawString method
Retrieve the raw property value for the given key
.
Implementations should return the string value of a property without
applying any type conversion or placeholder resolution. May return null
if the property is not defined.
This method is protected and intended for use by subclasses that implement property resolution strategies (e.g., environment variables, configuration files).
Implementation
@override
String? getPropertyAsRawString(String key) {
return _getProperty(key, Class.of<String>(), false);
}