StorifyMeAd constructor

StorifyMeAd({
  1. required int id,
  2. required String advertiserName,
  3. required CreativeType creativeType,
  4. String? videoURL,
  5. String? imageURL,
  6. String? trackingURL,
  7. String? clickURL,
  8. String? clickThroughCTA,
  9. bool? fullScreenCTA,
  10. double? adDuration,
})

Constructs an instance of StorifyMeAd.

All parameters are required except for videoURL, imageURL, trackingURL, clickURL, clickThroughCTA, fullScreenCTA, and adDuration, which are optional.

Implementation

StorifyMeAd({
  required this.id,
  required this.advertiserName,
  required this.creativeType,
  this.videoURL,
  this.imageURL,
  this.trackingURL,
  this.clickURL,
  this.clickThroughCTA,
  this.fullScreenCTA,
  this.adDuration,
});