ItemCardCart constructor
const
ItemCardCart({
- Key? key,
- VoidCallback? onClick,
- String? title,
- String? image,
- String? quantity,
- VoidCallback? addFunc,
- String? price,
- required VoidCallback deleteItemFunc,
- VoidCallback? removeFunc,
- String? description,
- Color? defaultColor,
- String? currency,
Implementation
const ItemCardCart({
Key? key,
this.onClick,
this.title,
this.image,
this.quantity,
this.addFunc,
this.price,
required this.deleteItemFunc,
this.removeFunc,
this.description,
this.defaultColor,
this.currency,
}) : super(key: key);