KeyboardObserver constructor

const KeyboardObserver({
  1. Key? key,
  2. Widget? child,
  3. KeyboardObserverListener? showListener,
  4. KeyboardObserverListener? hideListener,
  5. Curve? curveShow,
  6. Duration? durationShow,
  7. Curve? curveHide,
  8. Duration? durationHide,
  9. KeyboardAnimationListener? showAnimationListener,
  10. KeyboardAnimationListener? hideAnimationListener,
  11. bool useIOSSystemAnim = true,
})

Implementation

const KeyboardObserver({
  Key? key,
  this.child,
  this.showListener,
  this.hideListener,
  this.curveShow,
  this.durationShow,
  this.curveHide,
  this.durationHide,
  this.showAnimationListener,
  this.hideAnimationListener,
  this.useIOSSystemAnim = true,
}) : super(key: key);