PhloxAnimationsBuilder.move constructor

const PhloxAnimationsBuilder.move({
  1. Key? key,
  2. required Duration duration,
  3. required PhloxAnimationsWidgetBuilder? builder,
  4. PhloxAnimationsController? controller,
  5. Duration? reverseDuration,
  6. Duration? wait,
  7. required double? fromX,
  8. bool? loop,
  9. bool? auto,
  10. required double? fromY,
  11. required double? toX,
  12. double? fromRadius,
  13. double? toRadius,
  14. Color? fromColor,
  15. Curve? radiusCurve,
  16. Color? toColor,
  17. required double? toY,
  18. double? fromOpacity,
  19. double? toOpacity,
  20. double? fromScale,
  21. double? toScale,
  22. double? fromDegrees,
  23. double? toDegrees,
  24. Offset? rotateOffset,
  25. Curve? moveXCurve,
  26. Curve? moveYCurve,
  27. Curve? scaleCurve,
  28. Curve? opacityCurve,
  29. Curve? rotateCurve,
  30. Curve? colorChangeCurve,
  31. _PhloxAnimationsProgress? progress,
})

Implementation

const PhloxAnimationsBuilder.move({
  Key? key,
  required this.duration,
  required this.builder,
  this.controller,
  this.reverseDuration,
  this.wait,
  required this.fromX,
  this.loop,
  this.auto,
  required this.fromY,
  required this.toX,
  this.fromRadius,
  this.toRadius,
  this.fromColor,
  this.radiusCurve,
  this.toColor,
  required this.toY,
  this.fromOpacity,
  this.toOpacity,
  this.fromScale,
  this.toScale,
  this.fromDegrees,
  this.toDegrees,
  this.rotateOffset,
  this.moveXCurve,
  this.moveYCurve,
  this.scaleCurve,
  this.opacityCurve,
  this.rotateCurve,
  this.colorChangeCurve,
  this.progress,
}) : super(key: key);