of static method

_StringsEn of(
  1. BuildContext context
)

Implementation

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