toCss method
Converts this shadow to a CSS box-shadow value.
Implementation
String toCss() {
return [
if (inset) 'inset',
cssValue(x),
cssValue(y),
cssValue(blur),
cssValue(spread),
cssValue(color),
].join(' ');
}
Converts this shadow to a CSS box-shadow value.
String toCss() {
return [
if (inset) 'inset',
cssValue(x),
cssValue(y),
cssValue(blur),
cssValue(spread),
cssValue(color),
].join(' ');
}