NativeAd constructor

NativeAd({
  1. required String adSlotId,
  2. NativeAdType type = NativeAdType.banner,
  3. NativeStyles? styles,
  4. NativeAdController? controller,
})

Implementation

NativeAd({
  required this.adSlotId,
  this.type = NativeAdType.banner,
  this.styles,
  this.controller,
});