getTranslationsStore method

TranslationsStore getTranslationsStore({
  1. required String getLocale(),
})

Implementation

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