roundedBottom method
Applies border-radius only to the bottom side, matching .rounded-bottom.
Implementation
Widget roundedBottom({double radius = 6.0}) {
return ClipRRect(
borderRadius: BorderRadius.vertical(
bottom: Radius.circular(radius),
),
child: this,
);
}