checkUint32 function

void checkUint32(
  1. int i
)

Implementation

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