setRenderStyle method
Implementation
void setRenderStyle(String property, String present, {String? baseHref}) {
if (DebugFlags.shouldLogTransitionForProp(property)) {
cssLogger.info('[style][apply] ${tagName}.$property present="$present" baseHref=${baseHref ?? 'null'}');
}
dynamic value = present.isEmpty
? null
: renderStyle.resolveValue(property, present, baseHref: baseHref);
setRenderStyleProperty(property, value);
}