toCss method

String toCss()

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(' ');
}