TransactionAttributes constructor

TransactionAttributes({
  1. required String transactionId,
  2. String? affiliation,
  3. String? couponCode,
  4. double? shipping,
  5. double? tax,
  6. double? revenue,
})

Implementation

TransactionAttributes(
    {required this.transactionId,
    this.affiliation,
    this.couponCode,
    this.shipping,
    this.tax,
    this.revenue});