showRewarded method

Future<void> showRewarded()

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");
  }
}