CssBorderRadius.only constructor

CssBorderRadius.only({
  1. required CssLength topLeft,
  2. required CssLength topRightBottomLeft,
  3. required CssLength bottomRight,
})

Three-value shorthand.

  • topLeft: Top-left corner.
  • topRightBottomLeft: Top-right and bottom-left corners.
  • bottomRight: Bottom-right corner.

Implementation

factory CssBorderRadius.only({
  required CssLength topLeft,
  required CssLength topRightBottomLeft,
  required CssLength bottomRight,
}) = _CssBorderRadiusThree;