FFCustomCloudFunctionCall constructor
FFCustomCloudFunctionCall({
- FFIdentifier? customCloudFunctionIdentifier,
- FFFunctionCallValues? parameterValues,
Implementation
factory FFCustomCloudFunctionCall({
FFIdentifier? customCloudFunctionIdentifier,
FFFunctionCallValues? parameterValues,
}) {
final result = create();
if (customCloudFunctionIdentifier != null)
result.customCloudFunctionIdentifier = customCloudFunctionIdentifier;
if (parameterValues != null) result.parameterValues = parameterValues;
return result;
}