Persona constructor

const Persona({
  1. required String name,
  2. required Arcana arcana,
  3. required int level,
  4. required Map<Elements, Resistance> elements,
  5. required Map<String, int> skills,
  6. required Map<Stat, int> stats,
  7. required bool dlc,
  8. required bool special,
  9. required bool rare,
})

Implementation

const Persona({
  required this.name,
  required this.arcana,
  required this.level,
  required this.elements,
  required this.skills,
  required this.stats,
  required this.dlc,
  required this.special,
  required this.rare,
});