Npc constructor

const Npc({
  1. required String name,
  2. required int age,
  3. required Gender gender,
  4. required Race race,
  5. required String occupation,
  6. required PhysicalDescription physicalDescription,
  7. required Personality personality,
  8. required String goal,
  9. 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,
});