pokeapi_dart 0.0.1
pokeapi_dart: ^0.0.1 copied to clipboard
All the Pokémon data you'll ever need in one place, easily accessible through a modern RESTful API.
import 'package:pokeapi_dart/pokeapi_dart.dart';
void main() async {
final api = PokeApi();
print(await api.pokemon.get(id: 1));
}