setDictionary method

MutableArray setDictionary(
  1. int index,
  2. Dictionary value
)

Implementation

MutableArray setDictionary(int index, Dictionary value) {
  _data[index] = _clone(value._data);
  return this;
}