AtomicSmoothContainer constructor

const AtomicSmoothContainer({
  1. Key? key,
  2. Widget? child,
  3. double? width,
  4. double? height,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. Color? color,
  8. Gradient? gradient,
  9. BorderRadius? borderRadius,
  10. Border? border,
  11. List<BoxShadow>? shadows,
  12. AlignmentGeometry? alignment,
  13. BoxConstraints? constraints,
  14. Matrix4? transform,
  15. AlignmentGeometry? transformAlignment,
  16. Clip clipBehavior = Clip.antiAlias,
  17. Decoration? decoration,
  18. Decoration? foregroundDecoration,
})

Implementation

const AtomicSmoothContainer({
  super.key,
  this.child,
  this.width,
  this.height,
  this.padding,
  this.margin,
  this.color,
  this.gradient,
  this.borderRadius,
  this.border,
  this.shadows,
  this.alignment,
  this.constraints,
  this.transform,
  this.transformAlignment,
  this.clipBehavior = Clip.antiAlias,
  this.decoration,
  this.foregroundDecoration,
});