Stat constructor

Stat({
  1. int? id,
  2. String? name,
  3. int? gameIndex,
  4. bool? isBattleOnly,
  5. AffectingMoves? affectingMoves,
  6. AffectingNatures? affectingNatures,
  7. List<Characteristics>? characteristics,
  8. NamedAPIResource? moveDamageClass,
  9. List<Names>? names,
})

Implementation

Stat(
    {this.id,
    this.name,
    this.gameIndex,
    this.isBattleOnly,
    this.affectingMoves,
    this.affectingNatures,
    this.characteristics,
    this.moveDamageClass,
    this.names});