WindowRectangleRow constructor

const WindowRectangleRow({
  1. required int id,
  2. double? width,
  3. double? height,
  4. double? dx,
  5. double? dy,
})

Implementation

const WindowRectangleRow({
  required this.id,
  this.width,
  this.height,
  this.dx,
  this.dy,
});