FocusWidget constructor

const FocusWidget({
  1. Key? key,
  2. required Widget child,
  3. required FocusNode focusNode,
  4. bool showFocusArea = false,
  5. OnLostFocus? onLostFocus,
})

Implementation

const FocusWidget({
  Key? key,
  required this.child,
  required this.focusNode,
  this.showFocusArea = false,
  this.onLostFocus,
}) : super(key: key);