HotKeys constructor

HotKeys({
  1. bool directionPressed = false,
  2. bool movePressed = false,
  3. bool scalePressed = false,
  4. bool rotatePressed = false,
  5. String currentMove = '',
})

Implementation

HotKeys({
  this.directionPressed = false,
  this.movePressed = false,
  this.scalePressed = false,
  this.rotatePressed = false,
  this.currentMove = ''
});