CharacterInput constructor

const CharacterInput({
  1. Key? key,
  2. TextInputType? keyboardType,
  3. FocusNode? focusNode,
  4. void onChange(
    1. String
    )?,
  5. BlockInputStyle? blockInputStyle,
  6. bool isCyrillic = false,
  7. required TextEditingController textController,
})

Implementation

const CharacterInput({
  Key? key,
  this.keyboardType,
  this.focusNode,
  this.onChange,
  this.blockInputStyle,
  this.isCyrillic = false,
  required this.textController,
}) : super(key: key);