setContentTargetingUrl method
- 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 await AatkitFlutterPluginPlatform.instance
.setContentTargetingUrl(url);
} on PlatformException catch (e) {
aatkitLog("PlatformException, error: $e");
}
}