KeyboardBody constructor

const KeyboardBody({
  1. Key? key,
  2. KeyboardViewInsetsState? insetsState,
  3. Animation<double>? slideAnimation,
  4. required Widget child,
})

Implementation

const KeyboardBody({
  Key? key,
  this.insetsState,
  this.slideAnimation,
  required this.child,
}) : super(key: key);