destroyRewardedVideoAd static method
Removes the rewarded video Ad.
Implementation
static Future<bool?> destroyRewardedVideoAd() async {
try {
final result = await _channel.invokeMethod(DESTROY_REWARDED_VIDEO_METHOD);
return result;
} on PlatformException {
return false;
}
}