RawKeyEventDataAndroid constructor
- @Deprecated('Platform specific key event data is no longer available. See KeyEvent for what is available. ' 'This feature was deprecated after v3.18.0-2.0.pre.')
Creates a key event data structure specific for Android.
Implementation
@Deprecated(
  'Platform specific key event data is no longer available. See KeyEvent for what is available. '
  'This feature was deprecated after v3.18.0-2.0.pre.',
)
const RawKeyEventDataAndroid({
  this.flags = 0,
  this.codePoint = 0,
  this.plainCodePoint = 0,
  this.keyCode = 0,
  this.scanCode = 0,
  this.metaState = 0,
  this.eventSource = 0,
  this.vendorId = 0,
  this.productId = 0,
  this.deviceId = 0,
  this.repeatCount = 0,
});