RectProperties constructor

const RectProperties({
  1. required ResponsiveRect rect,
  2. bool flipRectWhileResizing = false,
  3. bool flipChild = false,
  4. bool constraintsEnabled = false,
  5. bool resizable = false,
  6. bool movable = false,
  7. bool hideHandlesWhenNotResizable = false,
  8. ResponsiveAlignment verticalAlign = ResponsiveAlignment.start,
  9. ResponsiveAlignment horizontalAlign = ResponsiveAlignment.start,
})

Implementation

const RectProperties({
  required this.rect,
  this.flipRectWhileResizing = false,
  this.flipChild = false,
  this.constraintsEnabled = false,
  this.resizable = false,
  this.movable = false,
  this.hideHandlesWhenNotResizable = false,
  this.verticalAlign = ResponsiveAlignment.start,
  this.horizontalAlign = ResponsiveAlignment.start,
});