PokemonForm constructor

PokemonForm({
  1. int? id,
  2. String? name,
  3. int? order,
  4. int? formOrder,
  5. bool? isDefault,
  6. bool? isBattleOnly,
  7. bool? isMega,
  8. String? formName,
  9. NamedAPIResource? pokemon,
  10. Sprites? sprites,
  11. NamedAPIResource? versionGroup,
})

Implementation

PokemonForm(
    {this.id,
    this.name,
    this.order,
    this.formOrder,
    this.isDefault,
    this.isBattleOnly,
    this.isMega,
    this.formName,
    this.pokemon,
    this.sprites,
    this.versionGroup});