inputMode property

String inputMode

Implementation

String get inputMode => getAttribute('inputmode') ?? '';
void inputMode=(String value)

Implementation

set inputMode(String value) {
  internalSetAttribute('inputmode', value);
  _setInputMode(value);
}