maybeOf static method

ThemeData? maybeOf(
  1. BuildContext context
)

Implementation

static ThemeData? maybeOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<FluentTheme>()?.data;
}