maybeOf static method

NomoThemeData? maybeOf(
  1. dynamic context
)

Implementation

static NomoThemeData? maybeOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<NomoTheme>()?.value;
}