load method
- @override
Start loading the resources for locale
. The returned future completes
when the resources have finished loading.
It's assumed that the this method will return an object that contains
a collection of related resources (typically defined with one method per
resource). The object will be retrieved with Localizations.of
.
Implementation
@override
Future<PinderyLocalizations> load(Locale locale) {
// Returning a SynchronousFuture here because an async "load" operation
// isn't needed to produce an instance of DemoLocalizations.
return new SynchronousFuture<PinderyLocalizations>(new PinderyLocalizations(locale));
}