setTargetingInfo method

Future<void> setTargetingInfo(
  1. Map<String, List<String>> info
)

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

info: Map with targeting information

Implementation

Future<void> setTargetingInfo(Map<String, List<String>> info) async {
  try {
    return await AatkitFlutterPluginPlatform.instance.setTargetingInfo(info);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}