DragoVirtualKeyboard constructor

DragoVirtualKeyboard({
  1. Key? key,
  2. required VirtualKeyboardType type,
  3. Widget builder(
    1. BuildContext context,
    2. VirtualKeyboardKey key
    )?,
  4. dynamic onReturn(
    1. String
    )?,
  5. bool forMobile = false,
  6. bool isOnChange = false,
  7. double height = 0,
  8. Color textColor = Colors.black,
  9. double fontSize = 14,
  10. bool alwaysCaps = false,
  11. DragoVirtualKeyboardController? controller,
})

Implementation

DragoVirtualKeyboard(
    {Key? key,
    required this.type,
    this.builder,
    this.onReturn,
    this.forMobile = false,
    this.isOnChange = false,
    this.height = 0,
    this.textColor = Colors.black,
    this.fontSize = 14,
    this.alwaysCaps = false,
    this.controller})
    : super(key: key);