builder static method

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

Implementation

static PhloxAnimationsBuilder builder({
  Key? key,
  required Duration duration,
  required PhloxAnimationsWidgetBuilder builder,
  bool? loop,
  bool? auto,
  Duration? reverseDuration,
  Duration? wait,
  PhloxAnimationsController? controller,
  double? fromX,
  double? fromY,
  double? toX,
  double? toY,
  double? fromOpacity,
  double? toOpacity,
  double? fromScale,
  double? toScale,
  double? fromDegrees,
  double? toDegrees,
  Offset? rotateOffset,
  Curve? moveXCurve,
  Curve? moveYCurve,
  Curve? scaleCurve,
  Curve? opacityCurve,
  Curve? rotateCurve,
  Curve? colorChangeCurve,
  _PhloxAnimationsProgress? progress,
  Color? fromColor,
  Color? toColor,
  double? fromRadius,
  double? toRadius,
  Curve? radiusCurve,
}) =>
    PhloxAnimationsBuilder(
      key: key,
      duration: duration,
      builder: builder,
      loop: loop,
      auto: auto,
      reverseDuration: reverseDuration,
      wait: wait,
      controller: controller,
      fromX: fromX,
      fromY: fromY,
      toX: toX,
      toY: toY,
      fromOpacity: fromOpacity,
      toOpacity: toOpacity,
      fromScale: fromScale,
      toScale: toScale,
      fromDegrees: fromDegrees,
      toDegrees: toDegrees,
      rotateOffset: rotateOffset,
      moveXCurve: moveXCurve,
      moveYCurve: moveYCurve,
      scaleCurve: scaleCurve,
      opacityCurve: opacityCurve,
      rotateCurve: rotateCurve,
      colorChangeCurve: colorChangeCurve,
      progress: progress,
      fromColor: fromColor,
      toColor: toColor,
      fromRadius: fromRadius,
      toRadius: toRadius,
      radiusCurve: radiusCurve,
    );