位于 address + sizeOf<Uint16>() * index 的 16 位无符号整数。
address + sizeOf<Uint16>() * index
Dart 整数在存储之前被截断为 16 位(类似于 .toUnsigned(16)),加载时 16 位值会被零扩展。
.toUnsigned(16)
地址 address 必须是 2 字节对齐的。
external int operator [](int index);