BorderRadiusCSS.symmetric constructor

const BorderRadiusCSS.symmetric({
  1. SizeCSS topLeftBottomRight = SizeCSS.zero,
  2. SizeCSS bottomLeftTopRight = SizeCSS.zero,
})

Implementation

const BorderRadiusCSS.symmetric({
  SizeCSS topLeftBottomRight = SizeCSS.zero,
  SizeCSS bottomLeftTopRight = SizeCSS.zero,
}) : super(
       topLeftBottomRight,
       bottomLeftTopRight,
       bottomLeftTopRight,
       topLeftBottomRight,
     );