CssBorderRadius.symmetric constructor

CssBorderRadius.symmetric(
  1. CssLength topLeftBottomRight,
  2. CssLength topRightBottomLeft
)

Symmetric radius.

The first value applies to top-left and bottom-right. The second value applies to top-right and bottom-left.

Implementation

factory CssBorderRadius.symmetric(
  CssLength topLeftBottomRight,
  CssLength topRightBottomLeft,
) = _CssBorderRadiusSymmetric;