ProShape constructor

const ProShape({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Color? color,
  5. double? radius,
  6. BorderRadius? customRadius,
  7. Alignment? childAlignment,
  8. Widget? child,
})

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);