FFCustomCloudFunctionsConfig constructor
FFCustomCloudFunctionsConfig({
- Iterable<
FFCustomCloudFunction> ? customCloudFunctions, - @Deprecated('This field is deprecated.') FFCustomCloudFunctionPackage? packageJson,
- FFCustomFile? packageJsonConfig,
Implementation
factory FFCustomCloudFunctionsConfig({
$core.Iterable<FFCustomCloudFunction>? customCloudFunctions,
@$core.Deprecated('This field is deprecated.')
FFCustomCloudFunctionPackage? packageJson,
FFCustomFile? packageJsonConfig,
}) {
final result = create();
if (customCloudFunctions != null)
result.customCloudFunctions.addAll(customCloudFunctions);
if (packageJson != null) result.packageJson = packageJson;
if (packageJsonConfig != null) result.packageJsonConfig = packageJsonConfig;
return result;
}