CardTransform constructor

CardTransform(
  1. {double x = 0,
  2. double y = 0,
  3. double angle = 0,
  4. double scale = 1,
  5. double opacity = 1.0}
)

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',
      );