Dart 中的免费词典 API 包装器
入门
使用 Dart
dart pub add free_english_dictionary
dart pub get使用 Flutter
flutter pub add free_english_dictionary
flutter pub get如何使用
查看示例获取更多用例信息。
void main() async {
// get word meaning
var meanings = FreeDictionary.getWordMeaning(word: "stairs");
// print meanings
print(meanings);
}