of static method

FeedbackLocalizations of(
  1. BuildContext context
)

Resolves from the widget tree, falling back to English.

Implementation

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