of static method

_InheritedLocaleData of(
  1. BuildContext context
)

Implementation

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