PhloxAnimationsBuilder constructor

const PhloxAnimationsBuilder({
  1. Key? key,
  2. required Duration duration,
  3. required PhloxAnimationsWidgetBuilder? builder,
  4. PhloxAnimationsController? controller,
  5. Duration? reverseDuration,
  6. Duration? wait,
  7. double? fromX,
  8. bool? loop,
  9. bool? auto,
  10. double? fromY,
  11. double? toX,
  12. double? fromRadius,
  13. double? toRadius,
  14. Color? fromColor,
  15. Curve? radiusCurve,
  16. Color? toColor,
  17. 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,
})

constructor --

Implementation

const PhloxAnimationsBuilder({
  Key? key,
  required this.duration,
  required this.builder,
  this.controller,
  this.reverseDuration,
  this.wait,
  this.fromX,
  this.loop,
  this.auto,
  this.fromY,
  this.toX,
  this.fromRadius,
  this.toRadius,
  this.fromColor,
  this.radiusCurve,
  this.toColor,
  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);