ShadowContainer constructor
const
ShadowContainer({
- Key? key,
- required Widget child,
- List<
BoxShadow> ? boxShadow, - Color? color,
- EdgeInsets? padding,
- EdgeInsets? margin,
- BorderRadius? borderRadius,
- double? width,
- double? height,
Implementation
const ShadowContainer(
{Key? key,
required this.child,
this.boxShadow,
this.color,
this.padding,
this.margin,
this.borderRadius,
this.width,
this.height})
: super(key: key);