操作符[]方法

String operator [](
  1. int index
)
override

在列表中给定索引处的对象。

index必须是此列表的有效索引,这意味着index必须是非负数且小于长度

实现

String operator [](int index) {
  if (JS("bool", "# >>> 0 !== # || # >= #", index, index, index, length))
    throw new IndexError.withLength(index, length, indexable: this);
  return this.getItem(index);
}