InteractableRenderSettings constructor

const InteractableRenderSettings({
  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,
  11. InteractableAnimation? hoverAnimation,
  12. InteractableAnimation? enterAnimation,
})

Creates a new InteractableRenderSettings instance.

Implementation

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