poker_simulations 0.1.2 copy "poker_simulations: ^0.1.2" to clipboard
poker_simulations: ^0.1.2 copied to clipboard

A library for modeling and simulating poker hands.

example/example.dart

import 'package:poker_simulations/poker_simulations.dart';

void main() {
  final deck = Deck()..shuffle();
  print('The deck:');
  print(deck);
  print('Taking seven cards:');
  final cards = deck.take(7);
  print(Hand(cards));
}
0
likes
160
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

A library for modeling and simulating poker hands.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

trotter

More

Packages that depend on poker_simulations