terms property

List<String> get terms

Returns the dictionary terms (keys) as an ordered list, sorted alphabetically.

Implementation

List<String> get terms {
  final terms = keys.toList();
  terms.sort((a, b) => a.compareTo(b));
  return terms;
}