removeFromUserAttributeArray method

dynamic removeFromUserAttributeArray(
  1. String attributeKey,
  2. List<String> attributeValues
)

Implementation

removeFromUserAttributeArray(
    String attributeKey, List<String> attributeValues) {
  _channel.invokeMethod("removeFromUserAttributeArray", <String, dynamic>{
    'attributeKey': attributeKey,
    'attributeValues': attributeValues
  });
}