Input$MarketPlaceOrderControllerInput constructor
Input$MarketPlaceOrderControllerInput({
- String? card,
- String? number,
- String? user,
- DateTime? orderTime,
- String? deliveryFees,
- Enum$OrderTypeEnum? orderType,
- String? currency,
- required Input$MarketPlaceOrderShoppingCartControllerInput shoppingCart,
Implementation
factory Input$MarketPlaceOrderControllerInput({
String? card,
String? number,
String? user,
DateTime? orderTime,
String? deliveryFees,
Enum$OrderTypeEnum? orderType,
String? currency,
required Input$MarketPlaceOrderShoppingCartControllerInput shoppingCart,
}) =>
Input$MarketPlaceOrderControllerInput._({
if (card != null) r'card': card,
if (number != null) r'number': number,
if (user != null) r'user': user,
if (orderTime != null) r'orderTime': orderTime,
if (deliveryFees != null) r'deliveryFees': deliveryFees,
if (orderType != null) r'orderType': orderType,
if (currency != null) r'currency': currency,
r'shoppingCart': shoppingCart,
});