Focus constructor

const Focus({
  1. Key? key,
  2. Widget? child,
  3. FocusNode? node,
  4. bool canFocus = true,
  5. KeyHandler? onKey,
})

Implementation

const Focus({
  super.key,
  super.child,
  this.node,
  this.canFocus = true,
  this.onKey,
});