rndDouble function
Provides a rndDouble() function that returns a random double value.
() () -> double
Example
var random = rndDouble();
print(random is Num); // true
print("Random: $random");
Implementation
double rndDouble(List args) {
_arityCheck(0, args.length);
return _random.nextDouble();
}