KeyboardObserver constructor

KeyboardObserver({
  1. FlutterView? view,
  2. void onShow()?,
  3. void onHide()?,
})

Implementation

KeyboardObserver({
  FlutterView? view,
  this.onShow,
  this.onHide,
}) : this._view = view ?? PlatformDispatcher.instance.views.first;