of static method
Implementation
static _StringsEn of(BuildContext context) {
final inheritedWidget = context.dependOnInheritedWidgetOfExactType<_InheritedLocaleData>();
if (inheritedWidget == null) {
throw 'Please wrap your app with "TranslationProvider".';
}
return inheritedWidget.translations;
}