roundedRect method

Card roundedRect(
  1. double radius
)

Implementation

Card roundedRect(double radius) {
  return Card(
    key: key,
    color: color,
    shadowColor: shadowColor,
    elevation: elevation,
    shape: roundedRectShape,
    borderOnForeground: borderOnForeground,
    margin: margin,
    clipBehavior: clipBehavior,
    child: child,
    semanticContainer: semanticContainer,
  );
}