nativeNames static method

Iterable<String> nativeNames()

Implementation

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