hasFlyTheme static method

bool hasFlyTheme(
  1. BuildContext context
)

Check if FlyTheme is available in the context

Implementation

static bool hasFlyTheme(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<FlyTheme>() != null;
}