ProductDetails constructor

const ProductDetails({
  1. Key? key,
  2. required int productId,
  3. required VoidCallback goToCheckout,
})

Implementation

const ProductDetails(
    {Key? key, required this.productId, required this.goToCheckout})
    : super(key: key);