LYShadowContainer constructor

const LYShadowContainer({
  1. Key? key,
  2. Widget? child,
  3. Color? shadowColor,
  4. double blurRadius = 14,
  5. double spreadRadius = 7,
  6. Offset offset = const Offset(0, 0),
  7. double borderRadius = 12,
})

Implementation

const LYShadowContainer({
  super.key,
  this.child,
  this.shadowColor,
  this.blurRadius = 14,
  this.spreadRadius = 7,
  this.offset = const Offset(0, 0),
  this.borderRadius = 12,
});