ScaleAnimationConfig constructor

const ScaleAnimationConfig(
  1. {Curve curve = Curves.linear,
  2. bool enabled = false,
  3. double animationStartDelay = 0,
  4. double animationFinishDelay = 0}
)

Implementation

const ScaleAnimationConfig({
  Curve curve = Curves.linear,
  bool enabled = false,
  double animationStartDelay = 0,
  double animationFinishDelay = 0,
}): super(
  curve: curve,
  enabled: enabled,
  animationStartDelay: animationStartDelay,
  animationFinishDelay: animationFinishDelay,
);