NativeAd constructor

NativeAd({
  1. @required String? adUnitId,
  2. @required String? factoryId,
  3. MobileAdTargetingInfo? targetingInfo,
  4. MobileAdListener? listener,
  5. Map<String?, dynamic>? customOptions,
})

Implementation

NativeAd({
  @required String adUnitId,
  @required this.factoryId,
  MobileAdTargetingInfo targetingInfo,
  MobileAdListener listener,
  this.customOptions,
}) : super(
        adUnitId: adUnitId,
        targetingInfo: targetingInfo,
        listener: listener,
      );