removeAdNetworkForKeywordTargeting method

Future<void> removeAdNetworkForKeywordTargeting(
  1. AdNetwork network
)

Adds an ad network to the list of ad networks that receive targeting keywords (if any set). If no ad networks are added, any set keywords will be delivered to all ad networks supporting keyword targeting.

network: Chosen ad network.

Implementation

Future<void> removeAdNetworkForKeywordTargeting(AdNetwork network) async {
  try {
    return await AatkitFlutterPluginPlatform.instance
        .removeAdNetworkForKeywordTargeting(network);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}