CssOutline constructor

CssOutline({
  1. CssLength? width,
  2. CssBorderStyle? style,
  3. CssColor? color,
})

Outline shorthand: width style color.

Note: The order of values in the shorthand does not matter in CSS, but we maintain a consistent order for the output string.

Implementation

factory CssOutline({
  CssLength? width,
  CssBorderStyle? style,
  CssColor? color,
}) = _CssOutlineShorthand;