codes static method

Iterable<String> codes()

Implementation

static Iterable<String> codes() {
  return kLanguages.map((e) => e["code"] ?? "").where((e) => e.isNotEmpty);
}