showRewarded method
Shows rewarded ad if it's ready.
Implementation
Future<void> showRewarded() async {
try {
await AatkitFlutterPluginPlatform.instance.showRewarded();
} on PlatformException catch (e) {
log("PlatformException, error: $e");
}
}