nextUInt method
Gets the next random UInt from the random number generator in the specified range.
Implementation
UInt nextUInt({
UInt from = -DEFAULT_BUFFER_SIZE,
UInt until = DEFAULT_BUFFER_SIZE,
}) {
return until - this.nextInt(until - from) + from;
}