Files
sdk/pkg/dev_compiler/test/dart_codegen/expect/math/random.dart
T

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();
}