ContainerShadow constructor

const ContainerShadow({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required Widget child,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. bool? border = true,
  8. bool? addShadow = true,
  9. BorderRadiusGeometry? borderRadius,
  10. Color? color,
})

Implementation

const ContainerShadow({
  super.key,
  this.width,
  this.height,
  required this.child,
  this.padding,
  this.margin,
  this.border = true,
  this.addShadow = true,
  this.borderRadius,
  this.color,
});