Attribution constructor

Attribution({
  1. required String userType,
  2. required String type,
  3. required AttributionCampaign campaign,
  4. required AttributionChannel channel,
  5. required AttributionPartner partner,
  6. String? sourceId,
  7. String? sourceBundleId,
  8. String? sourcePlacement,
  9. String? adsetId,
  10. required DateTime createdAt,
  11. required bool isRedownload,
})

Creates an Attribution instance.

Implementation

Attribution({
  required this.userType,
  required this.type,
  required this.campaign,
  required this.channel,
  required this.partner,
  this.sourceId,
  this.sourceBundleId,
  this.sourcePlacement,
  this.adsetId,
  required this.createdAt,
  required this.isRedownload,
});