Input$MarketPlaceOrderShoppingCartControllerInput constructor

Input$MarketPlaceOrderShoppingCartControllerInput({
  1. required List<Input$MarketPlaceOrderShoppingCartProductControllerInput> products,
  2. Input$ReduciblePriceInput? taxValue,
  3. Input$MarketPlaceOrderPriceInput? price,
  4. 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,
    });