FixedDigitInput constructor

const FixedDigitInput({
  1. Key? key,
  2. required double size,
  3. required int numberDigits,
  4. FocusNode? focusNode,
  5. void onSubmitted(
    1. int? value
    )?,
  6. void onChange(
    1. int? value
    )?,
  7. void toForward(
    1. int? value
    )?,
  8. void toBack(
    1. int? value
    )?,
  9. String hintText = "",
  10. TextAlign textAlign = TextAlign.center,
  11. Color? hintColor,
  12. Color? textColor,
})

Implementation

const FixedDigitInput({
  Key? key,
  required this.size,
  required this.numberDigits,
  this.focusNode,
  this.onSubmitted,
  this.onChange,
  this.toForward,
  this.toBack,
  this.hintText = "",
  this.textAlign = TextAlign.center,
  this.hintColor,
  this.textColor,
}) : super(key: key);