of static method

The FluentLocalizations from the closest Localizations instance that encloses the given context.

If no FluentLocalizations are available in the given context, this method throws an exception.

This method is just a convenient shorthand for: Localizations.of<FluentLocalizations>(context, FluentLocalizations)!.

References to the localized resources defined by this class are typically written in terms of this method. For example:

tooltip: FluentLocalizations.of(context).backButtonTooltip,

Implementation

static FluentLocalizations of(BuildContext context) {
  assert(debugCheckHasFluentLocalizations(context));
  return Localizations.of<FluentLocalizations>(context, FluentLocalizations)!;
}