setProfileValues static method

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

Sets multiple values for the specified profile property asynchronously.

This method replaces all existing values for the specified property with the new values. If you want to add values without removing existing ones, use addProfileValuesAsync instead.

property The name of the profile property to set values for values The new values for the profile property Returns a Future<dynamic> that completes when the operation is done

Implementation

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