findLocaleModule static method
- 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
};
}