FixedLattersInput constructor

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

Implementation

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