setAddUnique method

void setAddUnique(
  1. String key,
  2. dynamic element
)

Add an element to the array associated with a given key, only if it is not already present in the array. The position of the insert is not guaranteed

Implementation

void setAddUnique(String key, dynamic element) {
  set(key, _ParseAddUniqueOperation([element]));
}