ShopItemDetail constructor

const ShopItemDetail({
  1. Key? key,
  2. required ProductData data,
  3. DepositsEcommerceContext? shopContext,
})

Implementation

const ShopItemDetail(
    {Key? key,
    required this.data,
    this.shopContext,})
    : super(key: key);