Input constructor

Input()

Implementation

Input() {
  document.onKeyDown.listen(onKeyDown);
  document.onKeyUp.listen(onKeyUp);
}