free_dictionary 1.0.1
free_dictionary: ^1.0.1 copied to clipboard
Dart package that provides English dictionary meaning for word.
Free Dictionary API Wrapper in Dart #
Check out Free dictionary API homepage
Getting Started #
git clone https://github.com/haybankz/free_dictionary.git && cd free_dictionary
flutter pub get
How to use #
See example for more usecase information.
void main() async {
// get word meaning
var meanings = FreeDictionary.getWordMeaning(word: "stairs");
// print meanings
print(meanings);
}