showRewardInter method
Implementation
@override
void showRewardInter({AdModuleWithCallBacks? adModuleCallBacks}) {
if (rewardedInterstitialAd != null) {
rewardedInterstitialAd!.show(
onUserEarnedReward: (ad, reward) {},
);
return;
}
throw Exception("Please Initialize Ad Before Calling");
}