profileRemoveMultiValue static method

Future<void> profileRemoveMultiValue(
  1. String key,
  2. String value
)

Remove a unique value from a multi-value user profile property

If the key currently contains a scalar value, prior to performing the remove operation the key will be promoted to a multi-value property with the current value cast to a string. If the multi-value property is empty after the remove operation, the key will be removed.

Implementation

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