setAppKeyValue static method

void setAppKeyValue(
  1. String key,
  2. String value
)

Sets an app-level key-value pair for targeting.

Implementation

static void setAppKeyValue(String key, String value) {
  _methodChannel.invokeMethod('setAppKeyValue', {'key': key, 'value': value});
}