setUserKeyValue static method

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

Sets a user-level key-value pair for targeting.

Implementation

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