FFCustomCloudFunctionCall constructor

FFCustomCloudFunctionCall({
  1. FFIdentifier? customCloudFunctionIdentifier,
  2. 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;
}