Character constructor
Character({
- required String name,
- required Paragraph description,
- required Species species,
- required String age,
- required int remainingCharacterPoints,
- required int totalCharacterPoints,
- required HealthPoints healthPoints,
- required List<
Attribute> attributes, - required Inventory inventory,
- required List<
Spell> spells, - required List<
String> bonuses,
Implementation
Character({
required this.name,
required this.description,
required this.species,
required this.age,
required this.remainingCharacterPoints,
required this.totalCharacterPoints,
required this.healthPoints,
required this.attributes,
required this.inventory,
required this.spells,
required this.bonuses,
});