load method

Future<bool> load()

This method is called by the delegate to fetch translations.

Implementation

Future<bool> load() async {
  var result = await googleI18n.load();
  this.supportedLocales = googleI18n.loadedLanguages;
  this._localizedValues = googleI18n.localizedValues;
  return result;
}