About
@orm
abstract class _Pokemon extends Model {
String get nickName;
int get level;
int get experiencePoints;
@belongsTo
PokemonTrainer get trainer;
@belongsTo
PokemonSpecies get species;
@belongsTo
PokemonAttack get attack0;
@belongsTo
PokemonAttack get attack2;
@belongsTo
PokemonAttack get attack3;
@belongsTo
PokemonAttack get attack4;
}Last updated