PageInputKeyboard constructor

const PageInputKeyboard({
  1. Key? key,
  2. required DigitBuilder digitBuilder,
  3. required TextEditingController controller,
  4. Widget? leftAction,
  5. Widget? deleteButton,
  6. double horizontalSpacing = 20,
  7. double verticalSpacing = 20,
  8. ShapeBorder? shapeBorder,
  9. double childAspectRatio = 1,
  10. int pinInputsAmount = 4,
})

Implementation

const PageInputKeyboard({
  Key? key,
  required this.digitBuilder,
  required this.controller,
  this.leftAction,
  this.deleteButton,
  this.horizontalSpacing = 20,
  this.verticalSpacing = 20,
  this.shapeBorder,
  this.childAspectRatio = 1,
  this.pinInputsAmount = 4,
}) : super(key: key);