ComContainer constructor

const ComContainer({
  1. Key? key,
  2. Widget? child,
  3. AlignmentGeometry? alignment,
  4. double? width,
  5. double? height,
  6. EdgeInsetsGeometry? padding,
  7. Color? color,
  8. double? radius,
  9. EdgeInsetsGeometry? margin,
  10. double elevation = 0,
  11. DecorationImage? image,
  12. BoxDecoration? decoration,
  13. Color? shadowColor,
})

Implementation

const ComContainer({
  super.key,
  this.child,
  this.alignment,
  this.width,
  this.height,
  this.padding,
  this.color,
  this.radius,
  this.margin,
  this.elevation = 0,
  this.image,
  this.decoration,
  this.shadowColor,
});