fiveesrd_client 0.1.1
fiveesrd_client: ^0.1.1 copied to clipboard
REST and GraphQL clients for the FiveEsrd suite.
fiveesrd_client #
HTTP + GraphQL clients for the FiveEsrd suite. This package wraps the official
D&D 5e SRD API and serializes responses using fiveesrd_models.
dart pub add fiveesrd_client
import 'package:fiveesrd_client/fiveesrd_client.dart';
final client = FiveEsrdClient();
final fighter = await client.rest.getClass('fighter');
print(fighter.name);