CardTransform constructor
Used by Carousel to build cards on the correct position.
Implementation
CardTransform({
this.x = 0,
this.y = 0,
this.angle = 0,
this.scale = 1,
this.opacity = 1.0,
}) : assert(
opacity >= 0,
'Opacity cannot be negative',
),
assert(
opacity <= 1.0,
'Opacity needs to be between 0.0 and 1.0',
);