PokemonSpecie constructor

PokemonSpecie({
  1. int? id,
  2. String? name,
  3. int? order,
  4. int? genderRate,
  5. int? captureRate,
  6. int? baseHappiness,
  7. bool? isBaby,
  8. int? hatchCounter,
  9. bool? hasGenderDifferences,
  10. bool? formsSwitchable,
  11. NamedAPIResource? growthRate,
  12. List<PokedexNumbers>? pokedexNumbers,
  13. List<NamedAPIResource>? eggGroups,
  14. NamedAPIResource? color,
  15. NamedAPIResource? shape,
  16. NamedAPIResource? evolvesFromSpecies,
  17. NamedAPIResource? evolutionChain,
  18. NamedAPIResource? habitat,
  19. NamedAPIResource? generation,
  20. List<Names>? names,
  21. List<FlavorTextEntries>? flavorTextEntries,
  22. List<FormDescriptions>? formDescriptions,
  23. List<Genera>? genera,
  24. List<Varieties>? varieties,
})

Implementation

PokemonSpecie(
    {this.id,
    this.name,
    this.order,
    this.genderRate,
    this.captureRate,
    this.baseHappiness,
    this.isBaby,
    this.hatchCounter,
    this.hasGenderDifferences,
    this.formsSwitchable,
    this.growthRate,
    this.pokedexNumbers,
    this.eggGroups,
    this.color,
    this.shape,
    this.evolvesFromSpecies,
    this.evolutionChain,
    this.habitat,
    this.generation,
    this.names,
    this.flavorTextEntries,
    this.formDescriptions,
    this.genera,
    this.varieties});