CssOutline constructor
CssOutline({
- CssLength? width,
- CssBorderStyle? style,
- 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;