OrderBodyDataModel constructor

OrderBodyDataModel({
  1. OrderType? type,
  2. String? note,
  3. String? billingAddressId,
  4. String? shippingAddressId,
  5. List<CampaignDTO>? campaigns,
  6. AddressDTO? billingAddress,
  7. AddressDTO? shippingAddress,
  8. String? paymentMethod,
  9. String? deliveryDate,
})

Implementation

OrderBodyDataModel({
  this.type,
  this.note,
  this.billingAddressId,
  this.shippingAddressId,
  this.campaigns,
  this.billingAddress,
  this.shippingAddress,
  this.paymentMethod,
  this.deliveryDate,
});