of static method

NomoScaffoldThemeDataNullable of(
  1. dynamic context
)

Implementation

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