ExcludeFocusTraversalModifier constructor

const ExcludeFocusTraversalModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. bool excluding = true,
})

Const constructor for ExcludeFocusTraversal widget.

The excluding argument must not be null.

The child argument is required, and must not be null.

Implementation

const ExcludeFocusTraversalModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.excluding = true,
});