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