initializeForGameApp static method
Convenience method for games (interstitial + rewarded)
Perfect for games that need interstitials and rewarded videos
Implementation
static Future<void> initializeForGameApp({
required String interstitialAdUnitId,
required String rewardedAdUnitId,
String? bannerAdUnitId,
List<String>? testDeviceIds,
}) async {
await initializeWithYourAdIds(
interstitialAdUnitId: interstitialAdUnitId,
rewardedAdUnitId: rewardedAdUnitId,
bannerAdUnitId: bannerAdUnitId,
testDeviceIds: testDeviceIds,
);
}