Npc constructor
const
Npc({
- required String name,
- required int age,
- required Gender gender,
- required Race race,
- required String occupation,
- required PhysicalDescription physicalDescription,
- required Personality personality,
- required String goal,
- required List<
Companion> companions,
Implementation
const Npc({
required this.name,
required this.age,
required this.gender,
required this.race,
required this.occupation,
required this.physicalDescription,
required this.personality,
required this.goal,
required this.companions,
});