CircleContainer constructor

const CircleContainer({
  1. Key? key,
  2. double? size,
  3. double? paddingAll,
  4. Widget? child,
  5. Color? color,
  6. Gradient? gradient,
  7. Border? border,
  8. double? borderWidth,
  9. Color? borderColor,
  10. List<BoxShadow>? boxShadow,
  11. AlignmentGeometry alignment = Alignment.center,
  12. EdgeInsetsGeometry? margin,
  13. Clip clipBehavior = Clip.antiAlias,
  14. DecorationImage? image,
  15. Decoration? foregroundDecoration,
  16. BoxConstraints? constraints,
})

Implementation

const CircleContainer({
  super.key,
  this.size,
  this.paddingAll,
  this.child,
  this.color,
  this.gradient,
  this.border,
  this.borderWidth,
  this.borderColor,
  this.boxShadow,
  this.alignment = Alignment.center,
  this.margin,
  this.clipBehavior = Clip.antiAlias,
  this.image,
  this.foregroundDecoration,
  this.constraints,
});