ProShape constructor
const
ProShape({})
If you need to make a widget like circle shape, square shape and etc. even with colors, then you can use this widget. It can contain a child also.
Implementation
const ProShape({
Key? key,
this.height,
this.width,
this.color,
this.radius,
this.customRadius,
this.childAlignment,
this.child,
}) : super(key: key);