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. Color? backgroundColor,
  9. EdgeInsets? padding,
  10. Border? border,
  11. double? width,
  12. double? height,
  13. CuReShape? shape,
  14. BoxShadow? shadow,
})

Implementation

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