DDCard constructor

const DDCard({
  1. Key? key,
  2. Widget? child,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. double radius = 5,
  6. double blur = 5,
  7. Color color = Colors.white,
  8. Color? shadowColor,
})

Implementation

const DDCard({
  super.key,
  this.child,
  this.margin,
  this.padding,
  this.radius = 5,
  this.blur = 5,
  this.color = Colors.white,
  this.shadowColor,
});