of static method

NomoSiderThemeDataNullable of(
  1. dynamic context
)

Implementation

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