RayAnimationConfig constructor

const RayAnimationConfig({
  1. bool randomizeStartDelay = true,
  2. bool randomizeFinishDelay = true,
  3. Curve curve = Curves.linear,
  4. bool enabled = false,
  5. double animationStartDelay = 0,
  6. double animationFinishDelay = 0,
})

Implementation

const RayAnimationConfig({
  this.randomizeStartDelay = true,
  this.randomizeFinishDelay = true,
  Curve curve = Curves.linear,
  bool enabled = false,
  double animationStartDelay = 0,
  double animationFinishDelay = 0,
}): super(
  curve: curve,
  enabled: enabled,
  animationStartDelay: animationStartDelay,
  animationFinishDelay: animationFinishDelay,
);