CuReSelectableCard constructor

const CuReSelectableCard({
  1. Key? key,
  2. String? title,
  3. String? description,
  4. IconData? icon,
  5. Widget? child,
  6. bool? selected,
  7. CuReShape? shape,
  8. Function? onPressed,
  9. Color? color,
})

Implementation

const CuReSelectableCard({
  super.key,
  this.title,
  this.description,
  this.icon,
  this.child,
  this.selected,
  this.shape,
  this.onPressed,
  this.color,
});