KeyboardDismiss constructor

const KeyboardDismiss({
  1. Key? key,
  2. required Widget child,
  3. bool iOS = true,
  4. bool androidCloseWhenTap = false,
  5. bool androidCloseWhenSwipe = false,
  6. bool androidLoseFocus = false,
})

Implementation

const KeyboardDismiss({
  Key? key,
  required this.child,
  this.iOS = true,
  this.androidCloseWhenTap = false,
  this.androidCloseWhenSwipe = false,
  this.androidLoseFocus = false,
}) : super(key: key);