operator [] method

dynamic operator [] (
  1. int index
)

Implementation

dynamic operator [](int index) {
  throw RangeError.index(index, this, 'index', 'index out of range', 0);
}