WindowsState constructor

WindowsState({
  1. double windowsHeight = 200,
  2. double windowsWidth = 200,
  3. double dx = 0.0,
  4. double dy = 0.0,
  5. int index = 0,
})

Implementation

WindowsState({
  this.windowsHeight = 200,
  this.windowsWidth = 200,
  this.dx = 0.0,
  this.dy = 0.0,
  this.index = 0,
});