debug method
Print the values of properties in debug mode.
Implementation
void debug({String? debugLabel}) {
if (kDebugMode) {
_logger
..info('androidNativeAdUnitId', androidNativeAdUnitId)
..info('iosNativeAdUnitId', iosNativeAdUnitId)
..info('androidBannerAdUnitId', androidBannerAdUnitId)
..info('iosBannerAdUnitId', iosBannerAdUnitId)
..info('androidInterstitialAdUnitId', androidInterstitialAdUnitId)
..info('iosInterstitialAdUnitId', iosInterstitialAdUnitId)
..info('androidRewardedAdUnitId', androidRewardedAdUnitId)
..info('iosRewardedAdUnitId', iosRewardedAdUnitId)
..info('androidSplashAdUnitId', androidSplashAdUnitId)
..info('iosSplashAdUnitId', iosSplashAdUnitId)
..info(
'androidRewardedInterstitialAdUnitId',
androidRewardedInterstitialAdUnitId,
)
..info(
'iosRewardedInterstitialAdUnitId',
iosRewardedInterstitialAdUnitId,
)
..info('keywords', keywords)
..info('countries', countries)
..info('splashAdThreshold', splashAdThreshold)
..info('adServiceUriAuthority', adServiceUriAuthority)
..info('interstitialAdThreshold', interstitialAdThreshold)
..info('refreshInterval', refreshInterval)
..info('autoRefresh', autoRefresh)
..info('showRemoveAdLink', showRemoveAdLink)
..info('androidNativeAdmobEnabled', androidNativeAdmobEnabled)
..info('iosNativeAdmobEnabled', iosNativeAdmobEnabled)
..info('splashAdTimeThreshold', splashAdTimeThreshold)
..info('androidSplashAdUnits', androidSplashAdUnits)
..info('iosSplashAdUnits', iosSplashAdUnits)
..info('interstitialAdThreshold', interstitialAdThreshold)
..info('androidInterstitialAdUnits', androidInterstitialAdUnits)
..info('iosInterstitialAdUnits', iosInterstitialAdUnits)
..info('androidRewardedAdUnits', androidRewardedAdUnits)
..info('iosRewardedAdUnits', iosRewardedAdUnits)
..info('androidNativeAdUnits', androidNativeAdUnits)
..info('iosNativeAdUnits', iosNativeAdUnits);
}
}