part of dart.math; abstract class Random {external factory Random([int seed]); int nextInt(int max); double nextDouble(); bool nextBool(); }