of static method

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

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

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

textDirection: WidgetsLocalizations.of(context).textDirection,

Implementation

static QueryFieldStringsLocalizations? of(BuildContext context) {
  return Localizations.of<QueryFieldStringsLocalizations>(
      context, QueryFieldStringsLocalizations);
}