free_dictionary 1.0.1-alpha01
free_dictionary: ^1.0.1-alpha01 copied to clipboard
Dart package that provides English dictionary meaning for word.
example/free_dictionary_example.dart
import 'package:free_dictionary/free_dictionary.dart';
void main() async {
// get word meaning
var meanings = FreeDictionary.getWordMeaning(word: "stairs");
// print meanings
print(meanings);
}