Pokedex constructor

Pokedex({
  1. bool? isMainSeries,
  2. List<PokedexPokemonEntry>? pokemonEntries,
  3. List<PokedexName>? names,
  4. List<NamedAPIResource>? versionGroups,
  5. String? name,
  6. int? id,
  7. dynamic region,
  8. List<PokedexDescription>? descriptions,
})

Implementation

Pokedex(
    {this.isMainSeries,
    this.pokemonEntries,
    this.names,
    this.versionGroups,
    this.name,
    this.id,
    this.region,
    this.descriptions});