showWhenFocused method
Implementation
Widget showWhenFocused(Widget child, {Widget? unfocused, Key? key}) =>
this == null
? child
: Focused(
key: key,
unfocused: unfocused,
focusNode: this!,
child: child,
);