addProfileValue static method

Future addProfileValue(
  1. String property,
  2. String value
)

Adds a single value to the specified profile property asynchronously.

This method appends a new value 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 the value to value The value to add to the profile property Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> addProfileValue(String property, String value) {
  return BlueConicPlatform.instance.addProfileValue(property, value);
}