bottomRightSharpRadius property
BorderRadius
get
bottomRightSharpRadius
Bottom-left corner border radius.
Example:
Container(
child: Text("Hello Flutter"),
decoration: BoxDecoration(
borderRadius: 8.bottomRightSharpRadius, // Makes bottom-right corner (8px) rounded.
),
),
Implementation
BorderRadius get bottomRightSharpRadius => SharpBorderRadius.only(
bottomRight:
SharpRadius(cornerRadius: (this ?? 0).toDouble(), sharpRatio: 1));