FFRiveAnimationAction constructor

FFRiveAnimationAction({
  1. @Deprecated('This field is deprecated.') String? legacyAnimationKey,
  2. bool? startStop,
  3. 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;
}