Dice constructor
Dice({})
Implementation
Dice({
required this.amount,
required this.sides,
this.modifierValue,
this.modifierStat,
String? modifierSign,
}) : modifierSign = modifierSign ??
(modifierValue != null
? modifierValue >= 0
? "+"
: "-"
: "+");