startFullscreenAutoReload method

Future<void> startFullscreenAutoReload()

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

Implementation

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