FixedSymbolsInput constructor

const FixedSymbolsInput({
  1. Key? key,
  2. required double size,
  3. required int numberSymbols,
  4. void onSubmitted(
    1. String value
    )?,
  5. List<TextInputFormatter>? inputFormatters,
  6. FocusNode? focusNode,
  7. void onChange(
    1. String value
    )?,
  8. void toForward(
    1. String value
    )?,
  9. void toBack(
    1. String value
    )?,
  10. TextInputType? keyboardType,
  11. String hintText = "",
  12. Color? hintColor,
  13. TextAlign textAlign = TextAlign.center,
  14. Color? textColor,
})

Implementation

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