NumericKeyboard constructor

const NumericKeyboard({
  1. Key? key,
  2. required KeyboardTapCallback onKeyboardTap,
  3. TextStyle textStyle = const TextStyle(color: Colors.black),
  4. dynamic rightButtonFn()?,
  5. dynamic rightButtonLongPressFn()?,
  6. Widget? rightIcon,
  7. dynamic leftButtonFn()?,
  8. Widget? leftIcon,
  9. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
})

Implementation

const NumericKeyboard(
    {Key? key,
    required this.onKeyboardTap,
    this.textStyle = const TextStyle(color: Colors.black),
    this.rightButtonFn,
    this.rightButtonLongPressFn,
    this.rightIcon,
    this.leftButtonFn,
    this.leftIcon,
    this.mainAxisAlignment = MainAxisAlignment.spaceBetween})
    : super(key: key);