WidgetBoxShadow constructor

const WidgetBoxShadow({
  1. Key? key,
  2. double height = 0,
  3. double width = 0,
  4. double circular = 12,
  5. Color? shadowColor,
  6. double spreadRadius = 4,
  7. double blurRadius = 8,
  8. Offset? offset,
  9. Widget? child,
})

Implementation

const WidgetBoxShadow(
    {Key? key,
    this.height = 0,
    this.width = 0,
    this.circular = 12,
    this.shadowColor,
    this.spreadRadius = 4,
    this.blurRadius = 8,
    this.offset,
    this.child})
    : super(key: key);