KeyboardInput constructor

const KeyboardInput({
  1. required Widget child,
  2. dynamic onTap(
    1. KeyboardInputType
    )?,
  3. required KeyboardInputType value,
  4. dynamic onLongPress(
    1. KeyboardInputType
    )?,
  5. Key? key,
})

Implementation

const KeyboardInput({
  required this.child,
  this.onTap,
  required this.value,
  this.onLongPress,
  Key? key,
}) : super(key: key);