Ultimator constructor

const Ultimator({
  1. Key? key,
  2. required AnimationController controller,
  3. double? startTop,
  4. double? endTop,
  5. double? startLeft,
  6. double? endLeft,
  7. double? startRight,
  8. double? endRight,
  9. double? startBottom,
  10. double? endBottom,
  11. double? startWidth,
  12. double? endWidth,
  13. double? startHeight,
  14. double? endHeight,
  15. double? startOpacity,
  16. double? endOpacity,
  17. double? startScale,
  18. double? endScale,
  19. double? startRotation,
  20. double? endRotation,
  21. double? startRotationX,
  22. double? endRotationX,
  23. double? startRotationY,
  24. double? endRotationY,
  25. double? startRotationZ,
  26. double? endRotationZ,
  27. double? startTranslationX,
  28. double? endTranslationX,
  29. double? startTranslationY,
  30. double? endTranslationY,
  31. double? startTranslationZ,
  32. double? endTranslationZ,
  33. Color? startColor,
  34. Color? endColor,
  35. UltimatorGradiant? gradient,
  36. required Widget child,
})

Implementation

const Ultimator({
  Key? key,
  required this.controller,
  this.startTop,
  this.endTop,
  this.startLeft,
  this.endLeft,
  this.startRight,
  this.endRight,
  this.startBottom,
  this.endBottom,
  this.startWidth,
  this.endWidth,
  this.startHeight,
  this.endHeight,
  this.startOpacity,
  this.endOpacity,
  this.startScale,
  this.endScale,
  this.startRotation,
  this.endRotation,
  this.startRotationX,
  this.endRotationX,
  this.startRotationY,
  this.endRotationY,
  this.startRotationZ,
  this.endRotationZ,
  this.startTranslationX,
  this.endTranslationX,
  this.startTranslationY,
  this.endTranslationY,
  this.startTranslationZ,
  this.endTranslationZ,
  this.startColor,
  this.endColor,
  this.gradient,
  required this.child,
}) : super(key: key);