chance 2.0.0
chance: ^2.0.0 copied to clipboard
A minimalist generator of random numbers - inspired by chance.js
chance #
A minimalist generator of random numbers. Inspired by chance.js.
It currently has only basic capabilities. Feel free to contribute.
Usage #
import 'package:chance/chance.dart';
int randomInteger = Chance.integer(min: 3, max: 12); // 5
double randomDouble = Chance.floating(min: 3, max: 12); // 10.9634128828224
bool randomBool = Chance.boolean(likelihood: 30); // false