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

outdatedDart 1 only

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, http_status, intl, json_annotation

More

Packages that depend on wordnik