ContainerConfig constructor

const ContainerConfig({
  1. Key? key,
  2. BoxConstraints? constraints,
  3. Color? color,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry? padding,
  6. Clip clipBehavior = Clip.none,
  7. Decoration? foregroundDecoration,
  8. double? height,
  9. double? width,
  10. EdgeInsetsGeometry? margin,
  11. Matrix4? transform,
  12. AlignmentGeometry? transformAlignment,
})

Implementation

const ContainerConfig({
  this.key,
  this.constraints,
  this.color,
  this.alignment,
  this.padding,
  this.clipBehavior = Clip.none,
  this.foregroundDecoration,
  this.height,
  this.width,
  this.margin,
  this.transform,
  this.transformAlignment,
});