getTranslationsStore method

TranslationsStore getTranslationsStore({
  1. String? getLocale() = getDefaultLocale,
})

Implementation

TranslationsStore getTranslationsStore({
  String? Function() getLocale = getDefaultLocale,
}) => TranslationsStore(
  translations: getAllTranslations(),
  getLocale: getLocale,
);