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