NativeAd constructor

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

Implementation

const NativeAd({
  Key? key,
  required this.adSlotId,
  this.type = NativeAdType.banner,
  this.styles,
  this.controller,
}) : super(key: key);