addProfileValues static method

Future addProfileValues(
  1. String property,
  2. List<String> values
)

Adds multiple values to the specified profile property asynchronously.

This method appends new values to an existing profile property without removing existing values. If the property doesn't exist, it will be created.

property The name of the profile property to add values to values A list of values to add to the profile property Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> addProfileValues(
  String property,
  List<String> values,
) {
  return BlueConicPlatform.instance.addProfileValues(property, values);
}