openthesaurus 0.0.2 copy "openthesaurus: ^0.0.2" to clipboard
openthesaurus: ^0.0.2 copied to clipboard

outdated

A small dart library for querying synonyms from openthesaurus.de

example/main.dart

import 'package:openthesaurus/openthesaurus.dart';

void main(List<String> args) async {
  var ot = OpenThesaurus.create();
  var response = await ot.get('Hand');
  for (var syn in response) {
    print(syn.terms?.map((e) => e.term).toList());
  }
}
0
likes
0
points
4
downloads

Publisher

unverified uploader

Weekly Downloads

A small dart library for querying synonyms from openthesaurus.de

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

http, json_annotation

More

Packages that depend on openthesaurus