load method

Future<bool> load()

Loads translations for current locale

Implementation

Future<bool> load() async {
  var jsonMap = await _loader.loadMapForLocale(locale);
  _localizedStrings = jsonMap.map(_mapEntry);
  return true;
}