FlutterNativeAdOptions constructor

FlutterNativeAdOptions({
  1. required String adId,
  2. bool isTesting = false,
  3. int adsCount = 1,
})

Creates a new FlutterNativeAdOptions instance.

Implementation

FlutterNativeAdOptions({required this.adId, this.isTesting = false, this.adsCount = 1})
  : assert(adsCount >= 1 && adsCount <= 5);