KeyboardEvent constructor

KeyboardEvent(
  1. String type,
  2. bool bubbles,
  3. int keyCode,
  4. KeyLocation keyLocation,
  5. bool altKey,
  6. bool ctrlKey,
  7. bool shiftKey,
)

Creates a new KeyboardEvent.

Implementation

KeyboardEvent(super.type, super.bubbles, this.keyCode, this.keyLocation,
    this.altKey, this.ctrlKey, this.shiftKey);