updateColorRelativeProperty method
void
updateColorRelativeProperty()
Implementation
void updateColorRelativeProperty() {
if (_colorRelativeProperties.isEmpty) return;
_colorRelativeProperties.forEach((String propertyName, _) {
// TODO: use css color abstraction avoid re-parse the property string.
target.setRenderStyle(propertyName, target.style.getPropertyValue(propertyName));
});
}