dynamic operator [](index)

Source

operator [](index) {
  if (index is int) {
    _checkIndex(index);
  }

  return _indexed_getter(index);
}