ShadowContainer constructor

const ShadowContainer({
  1. Key? key,
  2. required Widget child,
  3. List<BoxShadow>? boxShadow,
  4. Color? color,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
  7. BorderRadius? borderRadius,
  8. double? width,
  9. 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);