setAppKeyValue static method

Future<void> setAppKeyValue(
  1. String key,
  2. String value
)

Set app-level key-value pair for targeting

App-level key-values are injected into bid requests at server-configured paths. These values are typically app-specific targeting parameters and are NOT affected by privacy regulations (persistent across privacy changes).

Implementation

static Future<void> setAppKeyValue(String key, String value) async {
  await _invokeMethod('setAppKeyValue', {'key': key, 'value': value});
}