KeyboardDismisser constructor

const KeyboardDismisser({
  1. Key? key,
  2. required Widget child,
  3. HitTestBehavior? behavior,
  4. List<GestureType> gestures = const [GestureType.onTap],
  5. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  6. bool excludeFromSemantics = false,
  7. bool isLtr = true,
})

Implementation

const KeyboardDismisser({
  super.key,
  required this.child,
  this.behavior,
  this.gestures = const [GestureType.onTap],
  this.dragStartBehavior = DragStartBehavior.start,
  this.excludeFromSemantics = false,
  this.isLtr = true,
});