Input$MarketPlaceOrderWithCartAndCoinsInput constructor

Input$MarketPlaceOrderWithCartAndCoinsInput({
  1. String? user,
  2. String? notes,
  3. required Enum$OrderTypeEnum orderType,
  4. Input$InstallmentInput? installment,
  5. Input$FullAddressInput? deliveryAddress,
  6. required DateTime orderTime,
  7. required Input$CartProductInput product,
  8. String? currency,
  9. Input$TargetACIInput? target,
})

Implementation

factory Input$MarketPlaceOrderWithCartAndCoinsInput({
  String? user,
  String? notes,
  required Enum$OrderTypeEnum orderType,
  Input$InstallmentInput? installment,
  Input$FullAddressInput? deliveryAddress,
  required DateTime orderTime,
  required Input$CartProductInput product,
  String? currency,
  Input$TargetACIInput? target,
}) =>
    Input$MarketPlaceOrderWithCartAndCoinsInput._({
      if (user != null) r'user': user,
      if (notes != null) r'notes': notes,
      r'orderType': orderType,
      if (installment != null) r'installment': installment,
      if (deliveryAddress != null) r'deliveryAddress': deliveryAddress,
      r'orderTime': orderTime,
      r'product': product,
      if (currency != null) r'currency': currency,
      if (target != null) r'target': target,
    });