of static method

NomoBottomBarThemeDataNullable of(
  1. dynamic context
)

Implementation

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