Keyboard constructor

Keyboard({
  1. Key? key,
  2. required KeyboardUIConfig keyboardUIConfig,
  3. required KeyboardTapCallback onKeyboardTap,
  4. List<String>? digits,
})

Implementation

Keyboard({
  Key? key,
  required this.keyboardUIConfig,
  required this.onKeyboardTap,
  this.digits,
}) : super(key: key);