ShakeEffect constructor
const
ShakeEffect({})
Implementation
const ShakeEffect({
Duration? delay,
Duration? duration,
Curve? curve,
int? hz,
Offset? offset,
double? rotation,
}) : rotation = rotation ?? defaultRotation,
hz = hz ?? defaultHz,
offset = offset ?? Offset.zero,
super(
delay: delay,
duration: duration,
curve: curve,
begin: 0,
end: 1,
);