RoundedRectangle constructor
RoundedRectangle({})
Implementation
RoundedRectangle({
double width = 4.0,
double height = 2.0,
double cornerRadius = 0.5,
Color color = WHITE,
}) : super(color: color, width: width, height: height) {
roundCorners(radius: cornerRadius);
}