ExcludeFocus constructor

const ExcludeFocus({
  1. Key? key,
  2. bool excluding = true,
  3. required Widget child,
})

Const constructor for ExcludeFocus widget.

Implementation

const ExcludeFocus({
  super.key,
  this.excluding = true,
  required this.child,
});