ItemsCard constructor

const ItemsCard({
  1. Key? key,
  2. Color? customColor = Colors.black,
  3. VoidCallback? increaseCart,
  4. VoidCallback? decreaseCart,
  5. CartModel? item,
  6. VoidCallback? deleteCartItem,
  7. String? currencySymbol,
})

Implementation

const ItemsCard(
    {Key? key,
      this.customColor = Colors.black,
      this.increaseCart,
      this.decreaseCart,
      this.item,
      this.deleteCartItem,
      this.currencySymbol})
    : super(key: key);