CharacterStatsSchema constructor

CharacterStatsSchema({
  1. Map<String, int> monstersKilled = const {},
  2. Map<String, int> resourcesGathered = const {},
  3. Map<String, int> actionCounts = const {},
  4. int deaths = 0,
})

Returns a new CharacterStatsSchema instance.

Implementation

CharacterStatsSchema({
  this.monstersKilled = const {},
  this.resourcesGathered = const {},
  this.actionCounts = const {},
  this.deaths = 0,
});