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