FlutterNativeAd constructor

FlutterNativeAd({
  1. required String id,
  2. String? headline,
  3. String? body,
  4. String? advertiser,
  5. String? icon,
  6. List<String> images = const [],
  7. String? cta,
  8. double? starRating,
  9. String? store,
  10. String? price,
  11. String? adChoicesUrl,
  12. String? adChoicesText,
})

Implementation

FlutterNativeAd({
  required this.id,
  this.headline,
  this.body,
  this.advertiser,
  this.icon,
  this.images = const [],
  this.cta,
  this.starRating,
  this.store,
  this.price,
  this.adChoicesUrl,
  this.adChoicesText,
});