CustomCard constructor

CustomCard({
  1. double elevation = 3,
  2. Color shadowColor = Colors.black,
  3. double childPadding = 5,
  4. Color color = Colors.white,
  5. Widget? child,
  6. Key? key,
  7. double? borderRadius,
  8. double? borderWidth,
  9. Color? borderColor,
  10. Color? hoverColor,
  11. Color? splashColor,
  12. GestureTapCallback? onTap,
  13. double? height,
  14. double? width,
})

Implementation

CustomCard({
  this.elevation = 3,
  this.shadowColor = Colors.black,
  this.childPadding = 5,
  this.color = Colors.white,
  this.child,
  this.key,
  this.borderRadius,
  this.borderWidth,
  this.borderColor,
  this.hoverColor,
  this.splashColor,
  this.onTap,
  this.height,
  this.width,
});