profileSetMultiValues static method

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

Set a collection of unique values as a multi-value user profile property, any existing value will be overwritten. Max 100 values, on reaching 100 cap, oldest value(s) will be removed. Values must be Strings and are limited to 512 characters.

Implementation

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