ProductCard constructor

const ProductCard({
  1. required ProductEntity product,
  2. Key? key,
})

Implementation

const ProductCard({
  required this.product,
  super.key,
});