requiredKeys constant

Set<String> const requiredKeys

The list of required keys that must be present in a JSON.

Implementation

static const requiredKeys = <String>{
  'name',
  'code',
  'level',
  'type',
  'hp',
  'attack_fire',
  'attack_earth',
  'attack_water',
  'attack_air',
  'res_fire',
  'res_earth',
  'res_water',
  'res_air',
  'critical_strike',
  'initiative',
  'min_gold',
  'max_gold',
  'drops',
};