FFLoopOverListVariable constructor
FFLoopOverListVariable({
- FFVariable? listVariable,
- @Deprecated('This field is deprecated.') int? loopIndex,
- @Deprecated('This field is deprecated.') String? loopName,
- FFLoopOverListKeyReference? loopOverListKeyRef,
- FFActionNodeKeyReference? actionNodeKeyRef,
Implementation
factory FFLoopOverListVariable({
FFVariable? listVariable,
@$core.Deprecated('This field is deprecated.') $core.int? loopIndex,
@$core.Deprecated('This field is deprecated.') $core.String? loopName,
FFLoopOverListKeyReference? loopOverListKeyRef,
FFActionNodeKeyReference? actionNodeKeyRef,
}) {
final result = create();
if (listVariable != null) result.listVariable = listVariable;
if (loopIndex != null) result.loopIndex = loopIndex;
if (loopName != null) result.loopName = loopName;
if (loopOverListKeyRef != null)
result.loopOverListKeyRef = loopOverListKeyRef;
if (actionNodeKeyRef != null) result.actionNodeKeyRef = actionNodeKeyRef;
return result;
}