MECardShadow constructor

const MECardShadow({
  1. Key? key,
  2. BoxBorder? boxBorder,
  3. double width = 300,
  4. double blurRadius = 4,
  5. Color? shadowColor,
  6. double shadowHorizontal = 0,
  7. double shadowVertical = 3,
  8. required Widget widget,
})

Implementation

const MECardShadow({
  Key? key,
  this.boxBorder,
  this.width = 300,
  this.blurRadius = 4,
  this.shadowColor,
  this.shadowHorizontal = 0,
  this.shadowVertical = 3,
  required this.widget,
}) : super(key: key);