setUint128 method
Writes an unsigned integer
to 16-bytes
.
The offset
must satisy the relations 0
≤ offset
≤ offset+8
≤ this.length
.
Implementation
void setUint128(final BigInt value, final int offset,
[final Endian endian = Endian.little]) {
setBigUint(value, offset, ByteLength.u128, endian);
}