load method
Implementation
Future<LocalizationRF> load(Locale locale) async {
String jsonContent = await rootBundle.loadString("assets/language/lang_${locale.languageCode}.json");
_localisedValues = json.decode(jsonContent);
try {
//dangerous on hot reloading ??
if (LanguageRF.onLoadComplete != null) {
LanguageRF.onLoadComplete!.call();
}
} catch (e) {}
return this;
}