FFDataStructFieldUpdate constructor
FFDataStructFieldUpdate({
- bool? clearUnsetFields,
- FFVariable? variable,
- FFDataStructFieldUpdate_FieldUpdates? fieldUpdates,
- FFUpdateFieldValue? fieldValue,
Implementation
factory FFDataStructFieldUpdate({
$core.bool? clearUnsetFields,
FFVariable? variable,
FFDataStructFieldUpdate_FieldUpdates? fieldUpdates,
FFUpdateFieldValue? fieldValue,
}) {
final result = create();
if (clearUnsetFields != null) result.clearUnsetFields = clearUnsetFields;
if (variable != null) result.variable = variable;
if (fieldUpdates != null) result.fieldUpdates = fieldUpdates;
if (fieldValue != null) result.fieldValue = fieldValue;
return result;
}