stringsOf static method

CupThreadStrings stringsOf(
  1. 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);
}