load method

Future<bool> load()

Implementation

Future<bool> load() async {
  _localizedStrings.clear();
  // Iterate over localized strings and filter based on locale
  for (var element in await localizedStrings) {
    if (element.locale == '${locale.languageCode}_${locale.countryCode}') {
      _localizedStrings.add(element);
    }
  }

  return true;
}