load method
Loads the localized resources for the given locale
.
Implementation
@override
Future<AppLocalizations> load(Locale locale) async {
final AppLocalizations appLocalizations = AppLocalizations(locale);
await appLocalizations.load();
return appLocalizations;
}