Check out Free dictionary API homepage
With Dart
dart pub add free_english_dictionary
dart pub get
With Flutter
flutter pub add free_english_dictionary
flutter pub get
See example for more usecase information.
void main() async {
// get word meaning
var meanings = FreeDictionary.getWordMeaning(word: "stairs");
// print meanings
print(meanings);
}