FastResponseAd constructor

const FastResponseAd({
  1. required String language,
  2. required String title,
  3. required String description,
  4. required FastResponseAdAsset image,
  5. required String url,
  6. FastResponseAdRanking? ranking,
  7. FastResponseAdAsset? video,
  8. String? discount,
  9. FastResponseAdMerchant? merchant,
  10. String? button,
  11. String? price,
})

Creates a FastResponseAd object with the given properties.

Implementation

const FastResponseAd({
  required this.language,
  required this.title,
  required this.description,
  required this.image,
  required this.url,
  this.ranking,
  this.video,
  this.discount,
  this.merchant,
  this.button,
  this.price,
});