ShapeConfig.roundedRect constructor
- double borderRadius = 8,
Rounded rectangle
Implementation
factory ShapeConfig.roundedRect({double borderRadius = 8}) => ShapeConfig._(
isCircle: false,
borderRadius: BorderRadius.circular(borderRadius),
);