startRewardedAutoReload method

Future<void> startRewardedAutoReload()

Enables automatic reloading of rewarded ad placement. Autoreloader will use reload time configured on addapptr.com account or fallback to default 30 seconds.

Implementation

Future<void> startRewardedAutoReload() async {
  try {
    await AatkitFlutterPluginPlatform.instance.startRewardedAutoReload();
  } on PlatformException catch (e) {
    log("PlatformException, error: $e");
  }
}