stringsOf static method
- BuildContext context
Accesses current CupThread localized strings.
Implementation
static CupThreadStrings stringsOf(BuildContext context) {
final scope = context.dependOnInheritedWidgetOfExactType<CupThreadThemeScope>();
if (scope != null) return scope.strings;
final locale = Localizations.maybeLocaleOf(context);
return CupThreadStrings.fromLocale(locale);
}