setAdd<T> method
Add an element
to the end of the array associated with a given key
Implementation
void setAdd<T>(String key, T element) {
set(key, _ParseAddOperation([element]));
}
Add an element
to the end of the array associated with a given key
void setAdd<T>(String key, T element) {
set(key, _ParseAddOperation([element]));
}