ExcludeFocus constructor Null safety
Const constructor for ExcludeFocus widget.
The excluding argument must not be null.
The child argument is required, and must not be null.
Implementation
const ExcludeFocus({
super.key,
this.excluding = true,
required this.child,
}) : assert(excluding != null),
assert(child != null);