NumericKeyboard constructor

NumericKeyboard({
  1. Key? key,
  2. required KeyboardTapCallback onKeyboardTap,
  3. Color textColor = Colors.black,
  4. dynamic rightButtonFn()?,
  5. Icon? rightIcon,
  6. dynamic leftButtonFn()?,
  7. Icon? leftIcon,
  8. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceEvenly,
})

Implementation

NumericKeyboard(
    {Key? key,
    required this.onKeyboardTap,
    this.textColor = Colors.black,
    this.rightButtonFn,
    this.rightIcon,
    this.leftButtonFn,
    this.leftIcon,
    this.mainAxisAlignment = MainAxisAlignment.spaceEvenly})
    : super(key: key);