Input$MarketPlaceOrderShoppingCartControllerInput constructor
Input$MarketPlaceOrderShoppingCartControllerInput({
- required List<
Input$MarketPlaceOrderShoppingCartProductControllerInput> products, - Input$ReduciblePriceInput? taxValue,
- Input$MarketPlaceOrderPriceInput? price,
- Input$DiscountDtoInput? discount,
Implementation
factory Input$MarketPlaceOrderShoppingCartControllerInput({
required List<Input$MarketPlaceOrderShoppingCartProductControllerInput>
products,
Input$ReduciblePriceInput? taxValue,
Input$MarketPlaceOrderPriceInput? price,
Input$DiscountDtoInput? discount,
}) =>
Input$MarketPlaceOrderShoppingCartControllerInput._({
r'products': products,
if (taxValue != null) r'taxValue': taxValue,
if (price != null) r'price': price,
if (discount != null) r'discount': discount,
});