code property

String get code

Value of the physical key being pressed. The value is not affected by current keyboard layout or modifier state.

Implementation

String get code => _wrapped.code;
set code (String v)

Implementation

set code(String v) {
  _wrapped.code = v;
}