Properties constructor

Properties({
  1. double? revenue,
  2. String? currency,
  3. double? value,
  4. String? path,
  5. String? referrer,
  6. String? title,
  7. String? url,
  8. String? name,
  9. String? category,
  10. String? sku,
  11. double? price,
  12. String? id,
  13. String? orderId,
  14. double? total,
  15. double? subtotal,
  16. double? shipping,
  17. double? tax,
  18. double? discount,
  19. String? coupon,
  20. List<Product>? products,
  21. bool? repeat,
  22. Map<String, Object> others = const {},
})

Implementation

Properties(
    {this.revenue,
    this.currency,
    this.value,
    this.path,
    this.referrer,
    this.title,
    this.url,
    this.name,
    this.category,
    this.sku,
    this.price,
    this.id,
    this.orderId,
    this.total,
    this.subtotal,
    this.shipping,
    this.tax,
    this.discount,
    this.coupon,
    this.products,
    this.repeat,
    this.others = const {}});