startAutoReload method

Future<void> startAutoReload()

Enables automatic reloading of placement. When using this method, the placement will automatically reload once the current loaded ad has been shown.

Implementation

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