load static method

Creates an object that provides US English resource values for the material library widgets.

The locale parameter is ignored.

This method is typically used to create a LocalizationsDelegate. The MaterialApp does so by default.

Implementation

static Future<FluentLocalizations> load(Locale locale) {
  return SynchronousFuture<FluentLocalizations>(
      const DefaultFluentLocalizations());
}