CuReCard constructor

const CuReCard({
  1. Key? key,
  2. Widget? child,
  3. IconData? icon,
  4. String? title,
  5. String? description,
  6. Color? color,
  7. Function? onPressed,
  8. Function? onLongPress,
  9. Color? backgroundColor,
  10. EdgeInsets? padding,
  11. Border? border,
  12. double? width,
  13. double? height,
  14. CuReShape? shape,
  15. List<BoxShadow>? shadow,
})

Implementation

const CuReCard({
  super.key,
  this.child,
  this.icon,
  this.title,
  this.description,
  this.color,
  this.onPressed,
  this.onLongPress,
  this.backgroundColor,
  this.padding,
  this.border,
  this.width,
  this.height,
  this.shape,
  this.shadow,
});