infraestructure_wc 1.0.0
infraestructure_wc: ^1.0.0 copied to clipboard
A simple fetch to the Pokemon Api
example/infraestructure_wc_example.dart
import 'package:infraestructure_wc/infraestructure_wc.dart';
Future<void> main() async {
var awesomePokemonApi = PokemonApi();
print('pokemons: ${await awesomePokemonApi.getPokemons()}');
}