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