wordnik 1.0.0 copy "wordnik: ^1.0.0" to clipboard
wordnik: ^1.0.0 copied to clipboard

An API client library for working with the Wordnik API in Dart.

wordnik #

Wordnik API for Dart #

All object models and API calls have been implemented, but with minimal testing. API signatures are likely to change until fully tested.

Basic usage #

import 'package:wordnik/wordnik.dart';

void main() async {

  Wordnik wordnik = Wordnik('YOUR_API_KEY');

  WordObject randomWord = await wordnik.getRandomWord(
    includePartOfSpeech: 'verb',
    minLength: 6,
    maxLength: 10
  );

  print(randomWord.word);

}
0
likes
40
pub points
0%
popularity

Publisher

verified publisherherohtar.com

An API client library for working with the Wordnik API in Dart.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http, intl, json_annotation

More

Packages that depend on wordnik