PositionedRenderSettings constructor

const PositionedRenderSettings({
  1. double? top,
  2. double? right,
  3. double? bottom,
  4. double? left,
  5. double? width,
  6. double? height,
  7. double? rotationAngle,
  8. bool mirror = false,
  9. String? asset,
  10. bool? isInvisible,
})

Creates a new PositionedRenderSettings instance.

Implementation

const PositionedRenderSettings({
  this.top,
  this.right,
  this.bottom,
  this.left,
  super.width,
  super.height,
  super.rotationAngle,
  super.mirror,
  super.asset,
  super.isInvisible,
});