findLocaleModule static method

Translations findLocaleModule([
  1. String? localeName
])

Implementation

static Translations findLocaleModule([String? localeName]) {
  return switch (localeName ?? Platform.localeName) {
    (String r) when r.startsWith("zh") => const TranslationsZh(),
    _ => const Translations(), // default and unsupported
  };
}