UdShape constructor

UdShape({
  1. double? size,
  2. Color? color,
  3. double? radius,
  4. Alignment? childAlignment,
  5. Widget? child,
})

If you need widget like circle shape or square shape then you can use this widget. It can contain a child also.

Implementation

UdShape({
  this.size,
  this.color,
  this.radius,
  this.childAlignment,
  this.child,
});