setAddAllUnique method

void setAddAllUnique(
  1. String key,
  2. List elements
)

Add multiple elements to the array associated with a given key, only adding elements which are not already present in the array. The position of the insert is not guaranteed

Implementation

void setAddAllUnique(String key, List<dynamic> elements) {
  set(key, _ParseAddUniqueOperation(elements));
}