setProfileValue static method
Sets a single value for the specified profile property asynchronously.
This method replaces all existing values for the specified property with
the new value. If you want to add values without removing existing ones,
use addProfileValueAsync instead.
property The name of the profile property to set the value for
value The new value for the profile property
Returns a Future<dynamic> that completes when the operation is done
Implementation
static Future<dynamic> setProfileValue(String property, String value) {
return BlueConicPlatform.instance.setProfileValue(property, value);
}