checkUint32 function
Implementation
void checkUint32(int i) {
if (i < 0 || i > 0xffffffff) {
throw ArgumentError.value(i, 'value', 'Not a uint32');
}
}
void checkUint32(int i) {
if (i < 0 || i > 0xffffffff) {
throw ArgumentError.value(i, 'value', 'Not a uint32');
}
}