Returns the dictionary terms (keys) as an ordered list, sorted alphabetically.
List<String> get terms { final terms = keys.toList(); terms.sort((a, b) => a.compareTo(b)); return terms; }