shake method
T
shake({})
Adds a shake extension to AnimateManager (Animate and AnimateList).
Implementation
T shake({
Duration? delay,
Duration? duration,
Curve? curve,
int? hz,
Offset? offset,
double? rotation,
}) =>
addEffect(ShakeEffect(
delay: delay,
duration: duration,
curve: curve,
hz: hz,
offset: offset,
rotation: rotation,
));