load method
Used to load the locale translation file
Implementation
Future<bool> load() async {
_loadingStream.add(LoadingStatus.loading);
decodedMap = await translationLoader!.load();
_localeStream.add(locale);
_loadingStream.add(LoadingStatus.loaded);
return true;
}