setAddAllUnique method
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));
}