toCss method

String toCss()

Converts this border to a CSS shorthand.

Implementation

String toCss() {
  if (style == 'none') return 'none';
  return '${cssValue(width)} $style ${cssValue(color)}';
}