free_dictionary 1.0.0
free_dictionary: ^1.0.0 copied to clipboard
Free Dictionary API Wrapper in Dart.
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);
}