maybeOf static method

FocusNode? maybeOf(
  1. BuildContext context
)

Implementation

static FocusNode? maybeOf(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<AntdBoxProvider>()
      ?.focusNode;
}