textInputType property

TextInputType textInputType

Implementation

TextInputType get textInputType => _textInputType;
void textInputType=(TextInputType value)

Implementation

set textInputType(TextInputType value) {
  if (value != _textInputType) {
    _textInputType = value;
    if (_textInputConnection != null && _textInputConnection!.attached) {
      deactiveTextInput();
      activeTextInput();
    }
  }
}