Gets the next random Double from the random number generator in the specified range.
Double nextDouble({ Double from = 0, Double until = 1, }) { return this.nextDouble() * (until - from) + from; }