maybeOf static method

AtomicThemeData? maybeOf(
  1. BuildContext context
)

Implementation

static AtomicThemeData? maybeOf(BuildContext context) {
  final theme = context.dependOnInheritedWidgetOfExactType<AtomicTheme>();
  return theme?.data;
}