HumanLifeGame
dice
Dice
roll method
roll
HumanLifeGame
dice
Dice
roll method
Dice class
Constructors
Dice
Properties
hashCode
max
min
runtimeType
Methods
noSuchMethod
roll
toString
Operators
operator ==
Constants
defaultMax
defaultMin
roll
method
int
roll
(
)
サイコロを振る
Implementation
int roll() => min + Random().nextInt(max - min + 1);