Nature constructor

Nature({
  1. int? id,
  2. String? name,
  3. NamedAPIResource? decreasedStat,
  4. NamedAPIResource? increasedStat,
  5. NamedAPIResource? likesFlavor,
  6. NamedAPIResource? hatesFlavor,
  7. List<PokeathlonStatChanges>? pokeathlonStatChanges,
  8. List<MoveBattleStylePreferences>? moveBattleStylePreferences,
  9. List<Names>? names,
})

Implementation

Nature(
    {this.id,
    this.name,
    this.decreasedStat,
    this.increasedStat,
    this.likesFlavor,
    this.hatesFlavor,
    this.pokeathlonStatChanges,
    this.moveBattleStylePreferences,
    this.names});