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