keyCode property
int?
get
keyCode
The deprecated HTML keyCode, which is system- and implementation-dependent numerical code signifying the unmodified identifier associated with the key pressed.
Implementation
int? get keyCode => _wrapped.keyCode;
set
keyCode
(int? v)
Implementation
set keyCode(int? v) {
_wrapped.keyCode = v;
}