ChobiAdMob constructor

ChobiAdMob({
  1. int adLastClickedTime = 0,
  2. required String lastClickedPrefsKey,
  3. bool isDebug = true,
  4. List<String>? testDeviceIds,
  5. String? androidId,
  6. String? iosId,
  7. required String androidTestId,
  8. required String iosTestId,
  9. int adIntervalTimeMs = 5 * 60 * 1000,
})

Implementation

ChobiAdMob({
  int adLastClickedTime = 0,
  required this.lastClickedPrefsKey,
  this.isDebug = true,
  this.testDeviceIds,
  this.androidId,
  this.iosId,
  required this.androidTestId,
  required this.iosTestId,
  this.adIntervalTimeMs = 5 * 60 * 1000,
}) {
  _adLastClickedTime = adLastClickedTime;
}