english_words 3.1.2 english_words: ^3.1.2 copied to clipboard
Utilities for working with English words. Counts syllables, generates well-sounding word combinations, and provides access to the top 5000 English words by usage.
example/english_words_example.dart
// Copyright (c) 2017, filiph. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import 'package:english_words/english_words.dart';
void main() {
generateWordPairs().forEach(print);
}