Keyboard constructor

const Keyboard({
  1. Key? key,
  2. dynamic onChanged(
    1. String value
    )?,
  3. dynamic onTapCall(
    1. String phone
    )?,
  4. dynamic onShown()?,
  5. dynamic onDismissed()?,
})

Creates a Keyboard widget.

Implementation

const Keyboard({
  super.key,
  this.onChanged,
  this.onTapCall,
  this.onShown,
  this.onDismissed,
});