uintValue method

int uintValue()

Get the numeric value of this Value as an unsigned integer.

Implementation

int uintValue() {
  return doubleValue().toInt().toUnsigned(32);
}