StackedAdvertisementMetadata constructor

StackedAdvertisementMetadata({
  1. Map<String, String>? customLabels,
  2. int? fee,
  3. String? uniqueId,
  4. String? title,
  5. String? serverCampaignId,
  6. String? placementId,
  7. String? siteId,
})

Implementation

StackedAdvertisementMetadata(
    {Map<String, String>? customLabels,
    this.fee,
    this.uniqueId,
    this.title,
    this.serverCampaignId,
    this.placementId,
    this.siteId})
    : labels = Map.unmodifiable(customLabels ?? {});