setContentTargetingUrl method

Future<void> setContentTargetingUrl(
  1. String url
)

Sets the content targeting url for the application. This information will be used only if no placement-specific targeting is available.

url The targeting url.

Implementation

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