TdFocus constructor

const TdFocus({
  1. Key? key,
  2. GestureTapDownCallback? onTapDown,
  3. GestureTapUpCallback? onTapUp,
  4. GestureTapCallback? onTap,
  5. GestureTapCallback? onTapCancel,
  6. String? debugLabel,
  7. FocusNode? focusNode,
  8. bool? canRequestFocus,
  9. bool? skipTraversal,
  10. required Widget child,
})

Implementation

const TdFocus({
  super.key,
  this.onTapDown,
  this.onTapUp,
  this.onTap,
  this.onTapCancel,
  this.debugLabel,
  this.focusNode,
  this.canRequestFocus,
  this.skipTraversal,
  required this.child,
});