AppOrder constructor

AppOrder({
  1. String id = "",
  2. String description = "",
  3. String url = '',
  4. int createdTime = 0,
  5. String customerEmail = '',
  6. ProfileType customerType = ProfileType.general,
  7. String couponId = '',
  8. List<String>? invoiceIds,
  9. AppProduct? product,
  10. SubscriptionPlan? subscriptionPlan,
  11. GooglePlayPurchaseDetails? googlePlayPurchaseDetails,
  12. AppStorePurchaseDetails? appStorePurchaseDetails,
})

Implementation

AppOrder({
  this.id = "",
  this.description = "",
  this.url = '',
  this.createdTime = 0,
  this.customerEmail = '',
  this.customerType = ProfileType.general,
  this.couponId = '',
  this.invoiceIds,
  this.product,
  this.subscriptionPlan,
  this.googlePlayPurchaseDetails,
  this.appStorePurchaseDetails,
});