animate method
animated all properties before this method
Implementation
Widget animate(
Duration duration,
Curve curve, {
Key? key,
}) =>
_StyledInheritedAnimation(
key: key,
animation: _StyledAnimatedModel(duration: duration, curve: curve),
child: this,
);