InterstitialConfig constructor

InterstitialConfig({
  1. bool enable = false,
  2. String adUnitIdAndroid = '',
  3. String adUnitIdIos = '',
  4. int requestTimeToShow = 10,
  5. int failTimeToStop = 3,
  6. int initRequestTime = 0,
})

Implementation

InterstitialConfig({
  bool enable = false,
  String adUnitIdAndroid = '',
  String adUnitIdIos = '',
  this.requestTimeToShow = 10,
  this.failTimeToStop = 3,
  this.initRequestTime = 0,
}) : super(
        enable: enable,
        adUnitIdAndroid: adUnitIdAndroid,
        adUnitIdIos: adUnitIdIos,
      );