FFRiveAnimationAction constructor
FFRiveAnimationAction({
- @Deprecated('This field is deprecated.') String? legacyAnimationKey,
- bool? startStop,
- FFNodeKeyReference? animationNodeKeyRef,
Implementation
factory FFRiveAnimationAction({
@$core.Deprecated('This field is deprecated.')
$core.String? legacyAnimationKey,
$core.bool? startStop,
FFNodeKeyReference? animationNodeKeyRef,
}) {
final result = create();
if (legacyAnimationKey != null)
result.legacyAnimationKey = legacyAnimationKey;
if (startStop != null) result.startStop = startStop;
if (animationNodeKeyRef != null)
result.animationNodeKeyRef = animationNodeKeyRef;
return result;
}