of static method

NomoAppBarThemeDataNullable of(
  1. dynamic context
)

Implementation

static NomoAppBarThemeDataNullable of(BuildContext context) {
  final result =
      context.dependOnInheritedWidgetOfExactType<NomoAppBarThemeOverride>();
  assert(result != null, 'No ThemeInfo found in context');
  return result!.data;
}