ConversionMeta constructor

const ConversionMeta({
  1. required double revenue,
  2. String? currency,
  3. String? eventName,
  4. String? productId,
  5. String? transactionId,
  6. Map<String, dynamic>? metadata,
})

Implementation

const ConversionMeta({
  required this.revenue,
  this.currency,
  this.eventName,
  this.productId,
  this.transactionId,
  this.metadata,
});