PaymentOrder constructor

PaymentOrder({
  1. num? id,
  2. String? uuid,
  3. String? orderNumber,
  4. num? price,
  5. String? countryCode,
  6. num? createdAt,
  7. num? vat,
  8. String? proDisplayName,
  9. String? proUniqueId,
  10. String? userDisplayName,
  11. String? userUniqueId,
  12. String? paymentStatusLabel,
  13. num? deliveryAddressId,
  14. List<OrderItems>? items,
  15. OrderDeliveryAddress? deliveryAddress,
})

Implementation

PaymentOrder(
    {this.id,
    this.uuid,
    this.orderNumber,
    this.price,
    this.countryCode,
    this.createdAt,
    this.vat,
    this.proDisplayName,
    this.proUniqueId,
    this.userDisplayName,
    this.userUniqueId,
    this.paymentStatusLabel,
    this.deliveryAddressId,
    this.items,
    this.deliveryAddress});