maybeOf static method

SmartSearchTheme? maybeOf(
  1. BuildContext context
)

Gets the SmartSearchTheme from the current context, or null if not found.

Implementation

static SmartSearchTheme? maybeOf(BuildContext context) {
  return Theme.of(context).extension<SmartSearchTheme>();
}