getAnimationSequence method
Implementation
MultiAnimationSequence getAnimationSequence() {
SmoothMatrix4 transform = SmoothMatrix4();
transform.scale(scale);
return MultiAnimationSequence(control: control, sequences: {
AnimationProperty.transform: AnimationSequence<SmoothMatrix4>()
..add(value: transform, duration: Duration.zero, delay: Duration.zero)
..add(
value: SmoothMatrix4(),
duration: duration,
delay: delay,
curve: curve),
});
}