Input$MarketPlaceOrderControllerInput constructor

Input$MarketPlaceOrderControllerInput({
  1. String? card,
  2. String? number,
  3. String? user,
  4. DateTime? orderTime,
  5. String? deliveryFees,
  6. Enum$OrderTypeEnum? orderType,
  7. String? currency,
  8. 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,
    });