profileAddMultiValues static method

Future<void> profileAddMultiValues(
  1. String key,
  2. List values
)

Add a collection of unique values to a multi-value user profile property If the property does not exist it will be created

Max 100 values, on reaching 100 cap, oldest value(s) will be removed. Values must be Strings and are limited to 512 characters.

If the key currently contains a scalar value, the key will be promoted to a multi-value property with the current value cast to a string and the new value(s) added

Implementation

static Future<void> profileAddMultiValues(String key, List values) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('profileAddMultiValues', {'key': key, 'values': values});
}