ContainerEx constructor

const ContainerEx({
  1. Key? key,
  2. Color? color,
  3. Widget? child,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry? padding,
  6. Decoration? decoration,
  7. Decoration? foregroundDecoration,
  8. BoxConstraints? constraints,
  9. EdgeInsetsGeometry? margin,
  10. Matrix4? transform,
  11. Clip clipBehavior = Clip.none,
  12. Brightness? brightness,
  13. double? height,
  14. double? width,
  15. bool isSquare = false,
})

Implementation

const ContainerEx({
  Key? key,
  this.color,
  this.child,
  this.alignment,
  this.padding,
  this.decoration,
  this.foregroundDecoration,
  this.constraints,
  this.margin,
  this.transform,
  this.clipBehavior = Clip.none,
  this.brightness,
  this.height,
  this.width,
  this.isSquare = false,
})  : this.size = null,
      super(key: key);