NumberKeyboard constructor

const NumberKeyboard({
  1. Key? key,
  2. required TextEditingController controller,
  3. bool allowDecimal = true,
})

Implementation

const NumberKeyboard({
  Key? key,
  required this.controller,
  this.allowDecimal = true,
}) : super(key: key);