setAddAll method

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

Add multiple elements to the end of the array associated with a given key

Implementation

void setAddAll(String key, List<dynamic> elements) {
  set(key, _ParseAddOperation(elements));
}