set method

void set(
  1. int i,
  2. dynamic value
)

Implementation

void set(int i, dynamic value)
{
  _array[i] = value;
}