CircleContainer constructor

CircleContainer({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. CircleBoxDecoration? boxDecoration,
  5. AlignmentGeometry? alignment,
  6. Widget? child,
  7. Clip clipBehavior = Clip.none,
  8. Color? color,
  9. BoxConstraints? constraints,
  10. Decoration? foregroundDecoration,
  11. EdgeInsetsGeometry? margin,
  12. EdgeInsetsGeometry? padding,
  13. Matrix4? transform,
  14. AlignmentGeometry? transformAlignment,
})

Implementation

CircleContainer({
  super.key,
  this.height,
  this.width,
  this.boxDecoration,
  super.alignment,
  super.child,
  super.clipBehavior,
  super.color,
  super.constraints,
  super.foregroundDecoration,
  super.margin,
  super.padding,
  super.transform,
  super.transformAlignment,
});