Container constructor

const Container({
  1. Widget? child,
  2. EdgeInsets? padding,
  3. EdgeInsets? margin,
  4. double? width,
  5. double? height,
  6. Color? color,
  7. BoxDecoration? decoration,
  8. Alignment? alignment,
  9. Key? key,
})

Implementation

const Container({
  this.child,
  this.padding,
  this.margin,
  this.width,
  this.height,
  this.color,
  this.decoration,
  this.alignment,
  super.key,
});