Transaction constructor
Transaction({})
Implementation
Transaction(
{required this.transactionId,
required this.affiliation,
this.revenue,
this.couponCode,
this.tax,
this.currency,
this.itemCount,
this.paymentMethod,
this.shipping,
this.shippingMethod})
: super() {
type = HitCategory.TRANSACTION;
}