FFFunctionCallValues_FFArgument constructor
FFFunctionCallValues_FFArgument({
- FFValue? value,
- FFTriggerActions? action,
Implementation
factory FFFunctionCallValues_FFArgument({
FFValue? value,
FFTriggerActions? action,
}) {
final result = create();
if (value != null) result.value = value;
if (action != null) result.action = action;
return result;
}