StacContainer constructor

const StacContainer({
  1. StacAlignment? alignment,
  2. StacEdgeInsets? padding,
  3. StacColor? color,
  4. StacBoxDecoration? decoration,
  5. StacBoxDecoration? foregroundDecoration,
  6. double? width,
  7. double? height,
  8. StacBoxConstraints? constraints,
  9. StacEdgeInsets? margin,
  10. StacAlignment? transformAlignment,
  11. StacWidget? child,
  12. StacClip? clipBehavior,
})

Creates a StacContainer with optional styling properties.

Implementation

const StacContainer({
  this.alignment,
  this.padding,
  this.color,
  this.decoration,
  this.foregroundDecoration,
  this.width,
  this.height,
  this.constraints,
  this.margin,
  this.transformAlignment,
  this.child,
  this.clipBehavior,
});