AttributionCampaign constructor

AttributionCampaign({
  1. required int id,
  2. required String name,
  3. required String type,
  4. required bool isOrganic,
})

Creates an AttributionCampaign instance.

Implementation

AttributionCampaign({
  required this.id,
  required this.name,
  required this.type,
  required this.isOrganic,
});